I am installing tweepy, but I am running into an error about pip.req. I have pip installed, but for some reason pip.req still can\'t be found. I did a bunch of research onl
It looks like it would work if you had this code:
def parse_requirements(filename):
""" load requirements from a pip requirements file """
lineiter = (line.strip() for line in open(filename))
return [line for line in lineiter if line and not line.startswith("#")]
Do this:
pip/pip/__init__.pypip/req.pypip/req.py:modify the line in setup.py
reqs = install_reqs