-
Notifications
You must be signed in to change notification settings - Fork 68
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
Error installing scikit-learn on top of scipy+numpy #9
Comments
Could you clarify when you get this ImportError? Is this upon installation or at runtime? If you could paste the relevant section of the logs, that would be helpful. Your analysis might be correct, as
(https://github.com/thenovices/heroku-buildpack-scipy/blob/master/bin/utils#L31) and see if that works on the master branch? |
Now it goes further, finishes compiling everything (kudos), but then I get /tmp/buildpack_dabc63fb8470fef2cde88e2a413a2ed9/bin/compile: line 193: bpwatch: command not found Maybe overwriting PATH so bpwatch cannot be found? |
Ah, I found the problem. Replacing that first line of
That should fix this problem. |
Hey there! Thanks for the fix, additionally I had to move the I will send you the pull request |
I will look into this when I have a chance... I would prefer a solution that works without having to move the |
I merged it in. HOWEVER: Please note that sklearn (0.14.1) did not pass all tests for me, when run with numpy 1.9.0 and scipy 0.13.3. Use with your own risk...
|
For a requirements.txt file just like
numpy==1.8.1
scipy==0.14.0
scikit-learn==0.14.1
Current version gives me
ImportError: liblapack.so.3gf:
I had to rollback to commit 1a9ab58 to make it work. I believe the change from export to set-env might be behind the error (so libraries dont get added to LDPATH)
The text was updated successfully, but these errors were encountered: