Open sonofmun opened 9 years ago
I can get it to install the required packages using:
pip install -r requirements.txt
BTW, I was running this on the Homer server.
But I get this error when I try to run python setup.py download
Traceback (most recent call last):
File "setup.py", line 13, in <module>
reqs = [str(ir.req) for ir in install_reqs]
File "/home/mmunson/envs/Iris/local/lib/python2.7/site-packages/pip/req/req_file.py", line 19, in parse_requirements
"parse_requirements() missing 1 required keyword argument: "
TypeError: parse_requirements() missing 1 required keyword argument: 'session'
The error is the same as the problem with pip install .
The problem is with pip 6.0.6., the newest release of pip. A line to install pip==1.5.4 is needed or the installation needs to be made compatible with the newest version of pip.
It's fixed in my branch. Pip changed the syntax of the parse_requirements function to require a session identifier.
When I run pip install . using a clean virtualenv I get the following output
Processing /home/mmunson/Iris Traceback (most recent call last): File "", line 20, in
File "/tmp/pip-3IsCBq-build/setup.py", line 13, in
reqs = [str(ir.req) for ir in install_reqs]
File "/home/mmunson/envs/Iris/local/lib/python2.7/site-packages/pip/req/req_file.py", line 19, in parse_requirements
"parse_requirements() missing 1 required keyword argument: "
TypeError: parse_requirements() missing 1 required keyword argument: 'session'
Complete output from command python setup.py egg_info:
Traceback (most recent call last):