How do I remove packages installed with Python's easy_install? How do I remove packages installed with Python's easy_install? python python

How do I remove packages installed with Python's easy_install?


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

Install pip according to the installation instructions:

$ wget https://bootstrap.pypa.io/get-pip.py$ python get-pip.py

Then you can use pip uninstall to remove packages installed with easy_install


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


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:

$ sudo rm -rf /usr/local/lib/python2.X/site-packages/[PACKAGE].egg