SipUninstall » History » Version 2
Adrian Georgescu, 04/12/2009 02:36 PM
1 | 1 | Adrian Georgescu | = Uninstalling guide = |
---|---|---|---|
2 | |||
3 | == Local repository == |
||
4 | |||
5 | To clean up the python-sipsimple folder used for building the software: |
||
6 | |||
7 | 2 | Adrian Georgescu | {{{ |
8 | 1 | Adrian Georgescu | cd python-sipsimple |
9 | sudo rm -rf build dist MANIFEST |
||
10 | sudo python setup.py clean --all |
||
11 | 2 | Adrian Georgescu | }}} |
12 | 1 | Adrian Georgescu | |
13 | == Manual installation == |
||
14 | |||
15 | To uninstall the software and all its dependencies that you have previously |
||
16 | installed using 'sudo python setup.py install' locate your site-packages |
||
17 | directory and remove the following files and folders: |
||
18 | |||
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 | }}} |