Marack75 / namebench

Automatically exported from code.google.com/p/namebench
Apache License 2.0
0 stars 0 forks source link

Uninstall? #103

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
How can I uninstall this program in my Ubuntu system?

"sudo python setup.py uninstall" doesn't works.

Original issue reported on code.google.com by simon@simonbcn.net on 26 Feb 2010 at 12:32

GoogleCodeExporter commented 8 years ago
If you are using the Ubuntu package, you can use apt-get remove namebench

If you downloaded and ran it from the namebench directory, simply remove the
namebench directory.

If you are using setup.py, there is not a very easy way. Python does not support
uninstalling modules! However, you can do so like this:

find /usr/bin /usr/lib/python* /usr/namebench -name "namebench*"  -print -exec 
rm -Rf
{} \;
find /usr/lib/python* -name "third_party" -print -exec rm -Rf {} \; 

Ignore any "No such file or directory" error messages.

Original comment by tstromb...@google.com on 26 Feb 2010 at 4:50

GoogleCodeExporter commented 8 years ago
i want to remove namebench.py..  where directory for uninstall?
im use python setup.py install...for install.. and how to remove??
thanks... 

Original comment by rahmansu...@gmail.com on 3 Mar 2012 at 7:09

GoogleCodeExporter commented 8 years ago
hmm... ok, im solved to my problem

#rm /usr/local/bin/namebench.py

Original comment by rahmansu...@gmail.com on 3 Mar 2012 at 7:27