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? |
|||
|
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 |
|||||||||||||||||||
|
|
For me, following mostly works: have pip installed, e.g.:
Check, how is your installed package named for python:
This shall list names of packages, you have installed (and which were detected by pip)
The name can be sometime long, then use just the name of package installed, being shown at the and after Then uninstall the package:
If it asks for confirmation about removing the package, then you are lucky guy and it will be removed. pip shall detect all package, which were installed by pip, and shall detect most of remaining ones (installed via easy_install or setup.py), but this may in some rare cases fail. Here is real sample from my local test with package named
|
|||||||
|
|
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. |
||||
|
|
|
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). |
|||||||||||||||
|
|
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/ |
|||||||
|
|
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. |
||||
|
|
setup.pyis conventional file name which can use several packaging modules such asdistutilsordistribute. Is there one in particular you are asking about? – cirosantilli May 4 at 14:19