DiffDock icon indicating copy to clipboard operation
DiffDock copied to clipboard

torch-sparse-0.6.17 not compatible

Open MADSNORREGAARD opened this issue 2 years ago • 1 comments

pip install torch-scatter torch-sparse torch-cluster torch-spline-conv torch-geometric==2.0.4 -f https://data.pyg.org/whl/torch-1.11.0+cu117.html

will install latest torch-sparse which is incompatible.

Should be changed to:

pip install torch-scatter torch-sparse==0.6.14 torch-cluster torch-spline-conv torch-geometric==2.0.4 -f https://data.pyg.org/whl/torch-1.11.0+cu117.html

MADSNORREGAARD avatar Jul 03 '23 15:07 MADSNORREGAARD

You could try to downlgrade the torch-sparse's vertion to 0.6.14. That worked for me

MsCongs avatar Aug 23 '23 13:08 MsCongs