I'm trying to install pip on a windows machine using python 2.6. I usually use python 2.7, but my companies production servers are running python26 so I need to make sure my code runs on 2.6 before handing it off to them. I'm using pip to install the following modules that my code leverages:
dateutil.parser
bs4
pandas
datetime
urllib2
random
os
time
os
I tried using the link below to install pip, but it directs me to a very long page of text and no doanload prompt. https://pip.pypa.io/en/stable/installing/
All of the links I've found on the topic have pointed me to the same link that doesn't seem to be functioning properly. How to install pip for python 2.6?
Is there a way to install directly on the command line? Or an alternate link I could use to install the pip module?
Thanks! Ben