-
Notifications
You must be signed in to change notification settings - Fork 151
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
pip install not working with torch==2.3.0 #223
Comments
If you are switching between PyTorch versions, did you make sure to correctly uninstall all existing installations of |
I definitely am running a fresh [build-system]
requires = ["setuptools", "torch"]
build-backend = "setuptools.build_meta" If I specify the version of torch to use, everything seems to work fine: [build-system]
requires = ["setuptools", "torch==2.3.0"]
build-backend = "setuptools.build_meta" Maybe it would be nice to specify the version of torch being used for the build automatically but I don't know if this is something you need/want. |
I had to use the |
I am trying to create a torch repo which has a C++ backend and I wanted to use pytorch_cluster as a reference for it. I have installed pytorch_cluster with pip from the cloned repo
pip install torch==2.3.0 pip install .
But when I try to import pytorch_cluster, it seems like there are some discrepancies with the installation?
When I try the same thing with
torch==2.4.0
, it seems to work fine. The problem here is that I am also going to usetorch_geometric
as dependency in my library but the wheels fortorch==2.4.0
don't exist fortorch_geometric
, as that version is not supported yet.Environment details:
Python: 3.11.9
OS: Darwin Kernel Version 23.5.0
pip: 24.0
The text was updated successfully, but these errors were encountered: