I was unaware that pip could be installed via my operating system's package manager, so I compiled and installed pip via source with the following command:
wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py -O - | sudo python
I would like to uninstall pip, and instead install it from my operating system's package manager. How would I go about completely undoing the work of the installation script?
If you installed pip like this:
Uninstall them like this:
That way you haven't installed pip, you installed just the
easy_install
i.e.setuptools
.First you should remove all the packages you installed with
easy_install
using (see uninstall):This includes
pip
if you installed it usingeasy_install pip
.After this you remove the
setuptools
following the instructions from here:I was using above command but it was not working. This command worked for me:
pip uninstall pip
will work