Project

General

Profile

SipUninstall » History » Revision 4

Revision 3 (Adrian Georgescu, 04/12/2009 02:40 PM) → Revision 4/13 (Adrian Georgescu, 04/17/2009 10:31 AM)

= Uninstall guide = 

 [[TOC(Sip*, depth=1)]] 

 == Local repository == 

 To clean up the python-sipsimple folder used for building the software: 

 {{{ 
 cd python-sipsimple 
 sudo rm -rf build dist MANIFEST 
 sudo python setup.py clean --all 
 }}} 

 == Manual installation == 

 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: 

 {{{ 
 sudo rm -r python_application* 
 sudo rm -r application* 
 sudo rm -r python_msrplib* 
 sudo rm -r msrplib* 
 sudo rm -r python_xcaplib* 
 sudo rm -r xcaplib* 
 sudo rm -r sipclient* 
 sudo rm -r sipsimple* 
 sudo rm -r pypjua* 
 sudo rm -r eventlet* 
 sudo rm -r /usr/share/pypjua 
 sudo rm -r /usr/share/sipclient 
 sudo rm -r /usr/local/share/sipclient 
 sudo rm -r /usr/local/bin/sip_* 
 sudo rm -r /usr/local/bin/xcap_* 
 }}} 

 == Debian package == 

 To remove the Debian package and its dependencies: 

 {{{ 
 sudo apt-get remove sipclient 
 sudo apt-get autoremove 
 }}}