Skip to content Skip to sidebar Skip to footer

Installing Pip On Python 2.7.8 On Windows

I am trying to install the module pip for python 2.7.8, the one that arcGIS installs for you. I am using the bootstrap method of installing pip and I am running into an error when

Solution 1:

You have to set proxies as you are inside firewall and installing files form outside firewall.

Ubuntu:

export http_proxy="http://<<username>>:<<password>>@<<proxyserver>>:<<proxy_port>>"
export https_proxy="https://<<username>>:<<password>>@<<proxyserver>>:<<proxy_port>>"

Windows:

set HTTP_PROXY=http://<<username>>:<<password>>@<<proxyserver>>:<<proxy_port>>
set HTTPS_PROXY=https://<<username>>:<<password>>@<<proxyserver>>:<<proxy_port>>

Solution 2:

I think you should first download get-pip.py and then run python get-pip.py.

If this doesn't work use python get-pip.py --prefix=/usr/local/.

Hope this helps.

Post a Comment for "Installing Pip On Python 2.7.8 On Windows"