I have installed a python package with python setup.py install.

How do I uninstall it?

link|improve this question

This question is about setup.py, while the question you are linking to as a duplicate, is about easy_install – Steen Feb 17 '11 at 13:05
feedback

5 Answers

up vote 57 down vote accepted

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 --record option, and take a look at the list this produces.

link|improve this answer
1  
I can't get this to work. Is there an example? – Clutch Mar 24 '10 at 20:29
31  
Something like: python setup.py install --record files.txt And when you find out the list is complete: cat files.txt | xargs rm -rf – Michal Čihař Apr 23 '10 at 14:02
feedback

Or more simply you could just do;

sudo rm $(cat install.record)

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.

link|improve this answer
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,

python setup.py bdist_wininst
dist/foo-1.0.win32.exe

("foo" being an example of course).

link|improve this answer
1  
I don't know if I like it, but you get a point for orthogal thinking. :) – Lennart Regebro Oct 11 '09 at 9:26
To be honest, I'm not sure either hence "the lazy way" ;-) But I thought I'd mention it was possible to create more "standard" installer. It's strange the setup.py doesn't provide a clean way to remove packages though. – RedGlyph Oct 11 '09 at 9:30
1  
Uninstalls require centralized registries of installed packages and it's files, and there isn't one. Discussions are ongoing on how to improve this story and it might be solved in Python 2.7/3.2 or 2.8/3.3 or so. – Lennart Regebro Oct 11 '09 at 9:33
That's what I thought. Well, it's good to know it might be sorted out soon, thanks the information! – RedGlyph Oct 11 '09 at 9:39
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/

link|improve this answer
Works, unless the install installed files outside of the package, which some do, like setuptools that installs and easy_install command. – Lennart Regebro Oct 11 '09 at 9:17
1  
Normally, if a package was installed using python setup.py as specified by the OP, there would not be an egg. OTOH, if there is one because easy_install was used, the documented way to uninstall packages is to use easy_install -m before deleting the egg file; otherwise, egg shells may be left behind in the easy-install.pth file. – Ned Deily Oct 11 '09 at 17:10
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...

for i in $(less install.record);
sudo rm $i;
done;

And presto. Uninstalled.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.