I need to pip to work, however, since I'm developing on Python 2.7.5, pip isn't installed by default.
What I've tried:
Downloading get-pip.py, and then:
python get-pip.py
Unfortunately, that didn't work and I get the error
c:\users\myUser\appdata\local\temp\tmpd2l3rn\pip.zip\pip_vendor\urllib3\util\ ssl_.py:160: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve t his. For more information, see https://urllib3.readthedocs.io/en/latest/advanced -usage.html#ssl-warnings
Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirmi ng the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retr ies exceeded with url: /simple/pip/ (Caused by SSLError(SSLError(1, '_ssl.c:504: error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version '),)) - skipping Could not find a version that satisfies the requirement pip (from versions: ) No matching distribution found for pip
I also checked Christoph Gohlke's website and got these packages:
However, he doesn't seem to keep .msi/exe installers for either of these anymore (they are .whl)... Which leads me to the question: Can I install .whl Python packages without pip? How can I install pip if it is in a .whl? Am I missing something? is there something else I haven't tried?