I have installed a python package with python setup.py install.
How do I uninstall it?
|
I have installed a python package with How do I uninstall it?
| |||
feedback
|
|
You need to remove all files manually, and also undo any other stuff that installation did manually. If you don't know the list of all files, you can reinstall it with the | |||||||||
feedback
|
|
Or more simply you could just do;
This works because the rm command takes a whitespace-seperated list of files to delete and your installation record is just such a list. Also, using "less" for this type of command could get you in big trouble depending on the local configuration. | ||||
|
feedback
|
|
The lazy way: simply uninstall from the Windows installation menu (if you're using Windows), or from the rpm command, provided you first re-install it after creating a distribution package. For example,
("foo" being an example of course). | |||||||||||||
feedback
|
|
Go to your python package directory and remove your .egg file, e.g.: In python 2.5(ubuntu): /usr/lib/python2.5/site-packages/ In python 2.6(ubuntu): /usr/local/lib/python2.6/dist-packages/ | |||||||
feedback
|
|
Extending on what Martin said, recording the install output and a little bash scripting does the trick quite nicely. Here's what I do...
And presto. Uninstalled. | ||||
|
feedback
|