SipUninstall » History » Version 5
Adrian Georgescu, 11/13/2009 09:55 PM
1 | 3 | Adrian Georgescu | = Uninstall guide = |
---|---|---|---|
2 | 1 | Adrian Georgescu | |
3 | 4 | Adrian Georgescu | [[TOC(Sip*, depth=1)]] |
4 | |||
5 | 5 | Adrian Georgescu | == Build directory == |
6 | 1 | Adrian Georgescu | |
7 | To clean up the python-sipsimple folder used for building the software: |
||
8 | |||
9 | 2 | Adrian Georgescu | {{{ |
10 | 1 | Adrian Georgescu | cd python-sipsimple |
11 | sudo rm -rf build dist MANIFEST |
||
12 | sudo python setup.py clean --all |
||
13 | 2 | Adrian Georgescu | }}} |
14 | 1 | Adrian Georgescu | |
15 | == Manual installation == |
||
16 | |||
17 | 3 | Adrian Georgescu | To remove the software and all its dependencies that you have previously manually installed using 'sudo python setup.py install' locate your Python site-packages folder (typically /Library/Python/2.5/site-packages/ on MacOSX or /usr/lib/python2.5/site-packages/ on Linux systems) and remove the following files and folders: |
18 | 1 | Adrian Georgescu | |
19 | {{{ |
||
20 | sudo rm -r python_application* |
||
21 | sudo rm -r application* |
||
22 | sudo rm -r python_msrplib* |
||
23 | sudo rm -r msrplib* |
||
24 | sudo rm -r python_xcaplib* |
||
25 | sudo rm -r xcaplib* |
||
26 | sudo rm -r sipclient* |
||
27 | sudo rm -r sipsimple* |
||
28 | sudo rm -r pypjua* |
||
29 | sudo rm -r eventlet* |
||
30 | sudo rm -r /usr/share/pypjua |
||
31 | sudo rm -r /usr/share/sipclient |
||
32 | sudo rm -r /usr/local/share/sipclient |
||
33 | sudo rm -r /usr/local/bin/sip_* |
||
34 | sudo rm -r /usr/local/bin/xcap_* |
||
35 | }}} |
||
36 | |||
37 | == Debian package == |
||
38 | |||
39 | To remove the Debian package and its dependencies: |
||
40 | |||
41 | {{{ |
||
42 | sudo apt-get remove sipclient |
||
43 | sudo apt-get autoremove |
||
44 | }}} |