From 6c05ecb4488c7d8ab16a2cacca0f3e8971f9fabc Mon Sep 17 00:00:00 2001 From: fatboYY Date: Thu, 3 Dec 2020 00:06:18 +0100 Subject: [PATCH] Fixed install for new torch-geometric related wheels See pip issue here: https://github.com/rusty1s/pytorch_scatter/issues/179 See torch_geometric issue here: https://github.com/rusty1s/pytorch_geometric/issues/1875 --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e146449..c55a48f 100644 --- a/README.md +++ b/README.md @@ -25,10 +25,10 @@ pip install numpy scipy matplotlib tensorboard open3d==0.9.0 opencv-python pip install "rtree>=0.8,<0.9" pip install trimesh[easy] conda install pytorch==1.6.0 torchvision==0.7.0 cudatoolkit=10.1 -c pytorch -pip install torch-scatter==latest+cu101 -f https://pytorch-geometric.com/whl/torch-1.6.0.html -pip install torch-sparse==latest+cu101 -f https://pytorch-geometric.com/whl/torch-1.6.0.html -pip install torch-cluster==latest+cu101 -f https://pytorch-geometric.com/whl/torch-1.6.0.html -pip install torch-spline-conv==latest+cu101 -f https://pytorch-geometric.com/whl/torch-1.6.0.html +pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-1.6.0+cu101.html +pip install torch-sparse -f https://pytorch-geometric.com/whl/torch-1.6.0+cu101.html +pip install torch-cluster -f https://pytorch-geometric.com/whl/torch-1.6.0+cu101.html +pip install torch-spline-conv -f https://pytorch-geometric.com/whl/torch-1.6.0+cu101.html pip install torch-geometric ```