SipUninstall » History » Version 1
  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 | cd python-sipsimple  | 
||
| 8 | sudo rm -rf build dist MANIFEST  | 
||
| 9 | sudo python setup.py clean --all  | 
||
| 10 | |||
| 11 | == Manual installation ==  | 
||
| 12 | |||
| 13 | To uninstall the software and all its dependencies that you have previously  | 
||
| 14 | installed using 'sudo python setup.py install' locate your site-packages  | 
||
| 15 | directory and remove the following files and folders:  | 
||
| 16 | |||
| 17 | {{{ | 
||
| 18 | sudo rm -r python_application*  | 
||
| 19 | sudo rm -r application*  | 
||
| 20 | sudo rm -r python_msrplib*  | 
||
| 21 | sudo rm -r msrplib*  | 
||
| 22 | sudo rm -r python_xcaplib*  | 
||
| 23 | sudo rm -r xcaplib*  | 
||
| 24 | sudo rm -r sipclient*  | 
||
| 25 | sudo rm -r sipsimple*  | 
||
| 26 | sudo rm -r pypjua*  | 
||
| 27 | sudo rm -r eventlet*  | 
||
| 28 | sudo rm -r /usr/share/pypjua  | 
||
| 29 | sudo rm -r /usr/share/sipclient  | 
||
| 30 | sudo rm -r /usr/local/share/sipclient  | 
||
| 31 | sudo rm -r /usr/local/bin/sip_*  | 
||
| 32 | sudo rm -r /usr/local/bin/xcap_*  | 
||
| 33 | }}}  | 
||
| 34 | |||
| 35 | == Debian package ==  | 
||
| 36 | |||
| 37 | To remove the Debian package and its dependencies:  | 
||
| 38 | |||
| 39 | {{{ | 
||
| 40 | sudo apt-get remove sipclient  | 
||
| 41 | sudo apt-get autoremove  | 
||
| 42 | }}}  |