PyTorch (GPU & CPU) 버전이 둘 다 설치되어있거나 여러 CUDA 버전이 설치되어 있는 경우다. 보통 conda install을 하면 gpu 하고 cpu버전이 둘다 설치되서 torch geometric에서는 충돌을 일으킨다.
따라서 binaries로 설치하면 더 좋다.
conda 가상환경 위치가 아래와 같을 시
/home/anaconda3/envs/python-3.9
$ cd /home/anaconda3/envs/python-3.9/lib/python3.9/site-packages
$ rm -rf torch*
pip install torch -f https://data.pyg.org/whl/torch-1.12.0+gpu.html
pip install torch-geometric -f https://data.pyg.org/whl/torch-torch-1.12.0+gpu.html
pip install torch-sparse -f https://data.pyg.org/whl/torch-torch-1.12.0+gpu.html
pip install torch-scatter -f https://data.pyg.org/whl/torch-torch-1.12.0+gpu.html
https://github.com/pyg-team/pytorch_geometric/issues/999#issuecomment-593482341