-
Notifications
You must be signed in to change notification settings - Fork 25
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
Difficulties during install #4
Comments
Hi sqbl, |
Can someone with a windows computer test installing with this change I made: https://github.com/sustainable-processes/gryffin/blob/4a45f57fe552b3b3a786a57105fccd41957cad3a/setup.py#L37 |
Hi, |
Operating System: Windows10
Python version: 3.7.9 (from anaconda)
Description
Trying to install gryffin in a fresh anaconda env failed. Specifically, gryffin is coursing issues due to a "/" in it's "setup.py". Furthermore, gryffin has quiet many failing dependencies that will need to be installed "manually" by the user (e.g. the entire C++ environment, and specific version numbers of torch).
This issue arose during installation of "summit" which has gryffin as a dependency. (See sustainable-processes/summit#71)
Solution(s)
After manually removing the last "/" in setup.py line 50 it resolved the error.
The C++ environment was installed as described here: https://stackoverflow.com/a/50210015
And the specific version of torch was installed by "pip install -f https://download.pytorch.org/whl/torch_stable.html torch===1.4.0" (notice the three "=")
I'll be happy to push a fix for the "/" in setup.py, but I don't know if that will break the install on other platforms (linux/mac)?
The text was updated successfully, but these errors were encountered: