-
Hi! I am trying to include pytorch geometric installs in a setup.py file, which includes the following:
I am getting this error, however:
Is there another way to include pyg in the setup files? |
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
Jul 30, 2022
Replies: 1 comment 1 reply
-
I don't think this is possible since
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
SamCox822
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I don't think this is possible since
setup.py
will only trust official sources such as pypi. The only way to overcome this is viarequirements.txt
files or viaconda
, e.g.