sylvia
sylvia

Reputation: 121

how to downgrade pip version 10.0.0 to pip version 9.0.1?

how to downgrade pip version 10.0.0 to pip version 9.0.1?

I upgraded my pip version to pip 10.0.0 but i can't seem to find most of the libraries from system interpreter. now i want to know how to downgrade from pip version 10.0.0 tried using command pip install pip=9.0.1 but had 'pip' is not recognized as internal or external command error

Upvotes: 8

Views: 43796

Answers (3)

Vijay Kumar
Vijay Kumar

Reputation: 345

Try this

pip install --upgrade pip==version

Upvotes: 3

Vhisyhnu
Vhisyhnu

Reputation: 141

Try this

sudo python -m pip install --force-reinstall pip==9.0.1

Upvotes: 12

Sigvard
Sigvard

Reputation: 85

Try following the accepted instruction below: Python pip3 - cannot import name 'main' error after upgrading pip

I had the same issue after upgrading pip without thinking (for those interested in the issue. This issue in the pip repository explains it)

Upvotes: 0

Related Questions