-
Notifications
You must be signed in to change notification settings - Fork 13
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
Cannot install scipy when using pip to install via the requirements.txt file #68
Comments
I tried removing the qualifiers on the modules (changed 'django==1.7' to 'django', 'numpy>=1.8.2' to 'numpy', and 'scipy>=0.14.0' to 'scipy'). I still ran into Installing the modules separately using pip (or installing numpy using 'pip install numpy' before running 'pip install -r requirements.txt') seems to work, but the install fails when you try to install them at the same time. This appears related to the issue here: scipy/scipy#3379. I am closing this issue for now. |
…NLP-Lab/topicalguide
I just did a fresh install, and I'm not getting the same error. A few questions:
|
I then created a new virtual environment, updated pip (for some reason it's at 6.0.8 on my machine, I updated it to 7.1.0), moved numpy back to its place above scipy, and the install completed successfully. It looks like my old pip installation was to blame for this problem. It looks like I need to install the 'python-dateutil' module when using a virtualenv, however. This seems like something that would normally be installed, and perhaps isn't because I'm using virtualenv. |
…rom BYU-NLP-Lab/topicalguide" This reverts commit 5184d49.
Do you mean that you had to do a manual installtion of Unless there's some sort of a version mismatch, I wouldn't expect virtualenv to affect the dependency resolution process. All it does is change where packages get stored so that each app can have its dependencies in isolation. When you say that you needed to install it, I'm assuming you mean doing a manual |
I did need to do a manual |
When I run
pip install -r requirements.txt
, scipy fails to install. It appears to install correctly when I usepip install scipy
, though it takes a few minutes to successfully install.The text was updated successfully, but these errors were encountered: