Home > Enterprise >  Uninstalling pip from /usr/bin
Uninstalling pip from /usr/bin

Time:07-23

I'm trying to uninstall pip3 from /usr/bin on MacOS

which pip3
/usr/bin/pip3

When I run

pip3 uninstall pip3
WARNING: Skipping pip3 as it is not installed.

Any suggestions?

CodePudding user response:

Try this out one more time

pip3 uninstall pip3

If that STILL doesn't work just remove pip3 manually from /usr/bin

which pip3

/usr/bin/pip3

cd /usr/bin

You can rm pip3 however you want, but if you want a quick (and painless) removal use:

rm -rf pip3

You can also do this for any subsequent versions of pip

pip uninstall pip

which pip

/usr/bin/pip

cd /usr/bin

rm -rf pip3

CodePudding user response:

Try uninstalling by

sudo -H pip3 uninstall pip3
  • Related