Created
October 5, 2014 15:39
-
-
Save itavero/6924e410bc93cfb75ea1 to your computer and use it in GitHub Desktop.
One liner to install Python PIP
This file contains hidden or 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
python < <(curl -s https://bootstrap.pypa.io/get-pip.py) |
But..Windows doesn't have curl, and it's PowerShell version is quite different..
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
But
cmd.exe
supports piping:So use
curl -s https://bootstrap.pypa.io/get-pip.py | python
. It should also work on linux.