Reputation: 31
I want to install pip on Windows 7. On http://www.pip-installer.org/en/latest/installing.html#id6 it says that 'securely' download it. Not sure what does it mean. When I click on get-pip.py I am directed to a page https://raw.github.com/pypa/pip/master/contrib/get-pip.py with loads of binary data.
Upvotes: 2
Views: 1522
Reputation: 174698
I want to install pip on Windows 7.
First, make sure you have installed an official supported version of Python; the most reliable way to do this is to install from the official windows installer page.
Next, navigate to this page and then search for pip
and you will see Windows installer packages for different versions of pip that correspond to different versions of Python. Download the one that matches the version of Python you have installed.
Once the package is downloaded, double click it to install it just like any other Windows application.
Upvotes: 1
Reputation: 9801
https://raw.github.com/pypa/pip/master/contrib/get-pip.py is not a download page. It's a installation file. The doc is quite clear about that.
To install or upgrade pip, securely download get-pip.py. [1]
Then run the following (which may require administrator access):
python get-pip.py
Upvotes: 0