Created
June 8, 2017 09:17
-
-
Save h3/e013f1737378f231bd08fec928008dd7 to your computer and use it in GitHub Desktop.
pip madness
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ pip install pip | |
Collecting pip | |
Using cached pip-9.0.1-py2.py3-none-any.whl | |
Installing collected packages: pip | |
Successfully installed pip-8.1.1 | |
You are using pip version 8.1.1, however version 9.0.1 is available. | |
You should consider upgrading via the 'pip install --upgrade pip' command. | |
$ pip install pip --upgrade pip | |
Collecting pip | |
Using cached pip-9.0.1-py2.py3-none-any.whl | |
Installing collected packages: pip | |
Successfully installed pip-8.1.1 | |
You are using pip version 8.1.1, however version 9.0.1 is available. | |
You should consider upgrading via the 'pip install --upgrade pip' command. | |
$ pip install --upgrade pip==9.0.1 | |
Collecting pip==9.0.1 | |
Using cached pip-9.0.1-py2.py3-none-any.whl | |
Installing collected packages: pip | |
Successfully installed pip-8.1.1 | |
You are using pip version 8.1.1, however version 9.0.1 is available. | |
You should consider upgrading via the 'pip install --upgrade pip' command. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, what elacheche said.