-
Notifications
You must be signed in to change notification settings - Fork 29
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
Package installation throws errors #9
Comments
Thank you! Rather than deleting the pytorch and torch_geometric dependencies we should specify the correct pip names. Especially the version number can be important. Similarly for the Python version, which should say something like |
Good point! If one wants to install
However, for CUDA 11.3 it must be
For I am not sure whether PEP508 is the correct solution regarding the python version. It more or less makes the dependence of a package depending on the python version but if you want to fix the python version you should require a minimum and maximum in your |
Fixed in 0110dce. I don't think we need to specify CUDA at all. Imho, the user is responsible for this if they want to use CUDA. |
There were several issues prohibiting the installation of gemnet as package:
setup.py
file referred to agemnet_pytorch
package even though the folder name isgemnet
python
,cudatoolkit
,pytorch
andtorch_geometric
are invalidpip
packages.Most of these should be fixed by 1922774
The text was updated successfully, but these errors were encountered: