The current instructions for creating a conda environment does not work. In particular, issues arise with pytorch and pytorch-geometric. I have attempted installing with pip instead using:
pip3 install torch==1.9.1 torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu111 --no-cache-dir
However, getting the version of pytorch-geometric to match has proven difficult. Using conda as in the install instructions to install pytorch-geometric always disrupts the pytorch version that is installed and causes downstream incompatibilities. I've tried using pip, but neither of the following commands work:
pip install pyg_lib torch_scatter torch_sparse torch_cluster torch_spline_conv -f https://data.pyg.org/whl/torch-1.9.1+cu111.html
pip3 install torch_geometric torch_scatter torch_sparse torch_cluster torch_spline_conv -f https://data.pyg.org/whl/torch-1.9.1+cu111.html
The current instructions for creating a conda environment does not work. In particular, issues arise with pytorch and pytorch-geometric. I have attempted installing with pip instead using:
However, getting the version of pytorch-geometric to match has proven difficult. Using conda as in the install instructions to install pytorch-geometric always disrupts the pytorch version that is installed and causes downstream incompatibilities. I've tried using pip, but neither of the following commands work: