SipUninstall

Version 11 (Adrian Georgescu, 11/10/2011 07:25 pm) → Version 12/13 (Adrian Georgescu, 11/10/2011 07:25 pm)


h1.
= Uninstall guide

h2.
=

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

==
Clean Build Directory

==

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

<pre>
{{{
cd python-sipsimple
sudo rm -rf build dist MANIFEST
sudo python setup.py clean --all
</pre>

h2.
}}}

==
Manual Removal

==

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.6/site-packages/ on MacOSX or /usr/lib/python2.6/site-packages/ on Linux systems) and remove the following files and folders:

<pre>
{{{
sudo rm -r application*
sudo rm -r backports*
sudo rm -r msrplib*
sudo rm -r xcaplib*
sudo rm -r sipclient*
sudo rm -r sipsimple*
sudo rm -r eventlet*
sudo rm -r /usr/share/pypjua
sudo rm -r /usr/share/sipclient
sudo rm -r /usr/local/share/sipclients/
sudo rm -r /usr/local/share/sipclient
sudo rm -r /usr/local/bin/sip_*
sudo rm -r /usr/local/bin/xcap_*
sudo rm -r /usr/local/bin/sip-*
sudo rm -r /usr/local/bin/xcap-*
</pre>

h2.
}}}

==
Debian Package

==

To remove the Debian packages and their dependencies:

<pre>
{{{
sudo apt-get remove sipclients python-sipsimple
sudo apt-get autoremove
</pre> }}}