-
Notifications
You must be signed in to change notification settings - Fork 19
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
Python version should be downgraded in environment.yml #55
Comments
Hello Asan, thanks for posting this. I tried python 3.4 and 3.8 but keep getting different errors. For example, with python 3.8 I got an error with numpy: File "Lace-1.14.1/Lace/Lace_run.py", line 14, in I am wondering if you managed to run Lace with either downgraded python or a recent version of networkx? Thanks, |
Hello, |
I was able to fix this by removing the version dependency for networkx in the environment.yml file, so if you edit the file before creating the environment and turn "- networkx=2.3*" into "- networkx", it works. This installed networkx 3.3 on my system, which removed the gdc-related error. |
Hello!
Here is an issue I have recently encountered: the python version was incompatible with the
networkx
package.Look at this compatibility table.
fractions.gcd(a, b)
has been moved tomath.gcd(a, b)
in Python 3.9. Either recent networkx version should be used or python version downgraded.Best regards
Asan
The text was updated successfully, but these errors were encountered: