Created
February 7, 2013 04:11
-
-
Save brianpeiris/4728424 to your computer and use it in GitHub Desktop.
Powershell script for installing 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
(new-object net.webclient).downloadfile('http://python-distribute.org/distribute_setup.py', "$pwd\distribute_setup.py") | |
python .\distribute_setup.py | |
(new-object net.webclient).downloadfile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', "$pwd\get-pip.py") | |
python .\get-pip.py | |
rm distribute-*.gz | |
rm distribute_setup.py | |
rm get-pip.py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment