Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to downgrade pip version 10.0.0 to pip version 9.0.1?

Tags:

python

pip

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

like image 522
sylvia Avatar asked Jun 09 '18 16:06

sylvia


2 Answers

Try this

sudo python -m pip install --force-reinstall pip==9.0.1
like image 54
Vhisyhnu Avatar answered Sep 24 '22 23:09

Vhisyhnu


Try this

pip install --upgrade pip==version

like image 45
Vijay Kumar Avatar answered Sep 26 '22 23:09

Vijay Kumar