-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pip install . throws error #6
Comments
I can get it to install the required packages using:
|
BTW, I was running this on the Homer server. |
But I get this error when I try to run
The error is the same as the problem with |
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):
The text was updated successfully, but these errors were encountered: