Python's easy_install makes installing new packages extremely convenient. However, as far as I can tell, it doesn't implement the other common features of a dependency manager - listing and removing installed packages.

What is the best way of finding out what's installed, and what is the preferred way of removing installed packages? Are there any files that need to be updated if I remove packages manually (e.g. by rm /usr/local/lib/python2.6/dist-packages/my_installed_pkg.egg or similar)?

link|improve this question

80% accept rate
13  
this post is nearly 2 years old at the time I'm writing this comment. pip is now effectively a replacement for easy_install and can properly and cleanly remove packages (eggs included) installed by the latter. Please make sure to upvote the answer suggesting it further down the thread. – mike Mar 15 '11 at 1:50
feedback

11 Answers

up vote 98 down vote accepted

pip, an alternative to setuptools/easy_install, provides an "uninstall" command.

link|improve this answer
Hey it actually does! Thanks! I was annoyed at one point that it didn't. For some reason my system was stuck at version 0.3.1 of pip; I had to feed easy_install the URL to the tarball for version 0.8.1 in order to update to a version that has the uninstall command. – intuited Sep 25 '10 at 4:03
8  
if you're having issues uninstalling modules with pip, make sure your pip installation itself is up to date: pip install -U pip # that's an uppercase U – mike Mar 15 '11 at 1:51
feedback

To uninstall an .egg you need to rm -rf the egg (it might be a directory) and remove the matching line from site-packages/easy-install.pth

link|improve this answer
9  
The newer pip package manager includes an uninstall feature. – joeforker Nov 17 '10 at 16:24
I find pip better then uninstall, because pip install from sources. If you have like me a brand new Win7 64bit, it will save your days :) – daitangio Jun 9 '11 at 7:11
feedback

There are several sources on the net suggesting a hack by reinstalling the package with the -m option and then just removing the .egg file in lib/ and the binaries in bin/. Also, discussion about this setuptools issue can be found on the python bug tracker as setuptools issue 21.

Edit: Added the link to the python bugtracker.

link|improve this answer
2  
Thanks for this info. For other's reference, here's the link to the issue that you mentioned: bugs.python.org/setuptools/issue21 – ire_and_curses Aug 5 '09 at 9:05
feedback

If the problem is a serious-enough annoyance to you, you might consider virtualenv. It allows you to create an environment that encapsulates python libraries. You install packages there rather than in the global site-packages directory. Any scripts you run in that environment have access to those packages (and optionally, your global ones as well). I use this a lot when evaluating packages that I am not sure I want/need to install globally. If you decide you don't need the package, it's easy enough to just blow that virtual environment away. It's pretty easy to use. Make a new env:

$>virtualenv /path/to/your/new/ENV

virtual_envt installs setuptools for you in the new environment, so you can do:

$>ENV/bin/easy_install

You can even create your own boostrap scripts that setup your new environment. So, with one command, you can create a new virtual env with, say, python 2.6, psycopg2 and django installed by default (you can can install an env-specific version of python if you want).

link|improve this answer
feedback

First you have to run this command:

$ easy_install -m [PACKAGE]

It removes all dependencies of the package.

Then remove egg file of that package:

$ rm -rf .../python2.X/site-packages/[PACKAGE].egg
link|improve this answer
feedback

try

$ easy_install -m [PACKAGE]

then

$ rm -rf .../python2.X/site-packages/[PACKAGE].egg
link|improve this answer
feedback

For listing installed python packages, you can use yolk -l. You'll need to easy_install yolk first though.

link|improve this answer
feedback

Came across this question, while trying to uninstall the many random python packages installed over time.

Using information from this thread this is what I came up with:

cat package_list | xargs -n1 sudo pip uninstall -y

The package_list is cleaned up (awk) from a pip freeze in a virtualenv

To remove almost all python packages:

yolk -l | cut -f 1 -d " " | grep -v "setuptools|pip|ETC.." | xargs -n1 pip uninstall -y

link|improve this answer
<package_list xargs -n1 sudo pip uninstall -y avoids an UUOC! – Heini Høgnason Feb 24 '11 at 13:33
feedback

Guys, I just ran into the same problem on my mac... osx leopard 10.6.blah.

Solution is to make sure you're calling the mac ports python, ie

sudo port install python26
sudo port install python_select
sudo python_select python26
sudo port install py26-mysql

Hope this helps.

link|improve this answer
However, I've completely switched away from MacPorts to either Brew, native python 2.7 from mac. MySQLdb installed via setup_tools – Clustermagnet Jan 1 at 15:18
feedback

All the info is in the other answers, but none summarizes both your requests or seem to make things needlessly complex:

  • For your removal needs: use pip uninstall <package>
    (install using easy_install pip)
  • For your 'list installed packages' needs:
    • either use pip freeze, or
    • use yolk -l which can output more package details
      (install via easy_install yolk or pip install yolk)
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.