Skip to content

Instantly share code, notes, and snippets.

@h3
Created June 8, 2017 09:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save h3/e013f1737378f231bd08fec928008dd7 to your computer and use it in GitHub Desktop.
Save h3/e013f1737378f231bd08fec928008dd7 to your computer and use it in GitHub Desktop.
pip madness
$ 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.
@elacheche
Copy link

elacheche commented Jun 8, 2017

You forgot to remove the 'pip' after 'install' in line #10

@shanesaravia
Copy link

Yes, what elacheche said.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment