安装torch_geometric需要安装对应的依赖库,在cpu环境下安装库,一定要注意与torch的版本对应。
    torch版本为1.7.0。

    1. 安装torch的命令为:
    • 非CUDA版本:

      1. pip install torch==1.7.0+cpu torchvision==0.8.1+cpu torchaudio===0.7.0 -f https://download.pytorch.org/whl/torch_stable.html
    • CUDA版本

      1. pip install torch===1.7.0 torchvision===0.8.1 torchaudio===0.7.0 -f https://download.pytorch.org/whl/torch_stable.html
    1. 接下来安装torch-geometric

      1. pip install torch-geometric==2.0.1
    2. 安装相关的依赖库

      1. pip install --no-index torch-scatter -f https://pytorch-geometric.com/whl/torch-1.7.0+cpu.html
      2. pip install --no-index torch-sparse -f https://pytorch-geometric.com/whl/torch-1.7.0+cpu.html
      3. pip install --no-index torch-cluster -f https://pytorch-geometric.com/whl/torch-1.7.0+cpu.html
      4. pip install --no-index torch-spline-conv -f https://pytorch-geometric.com/whl/torch-1.7.0+cpu.html

      如果版本安装不对的话,卸载torch的同时要卸载掉torchaudio和torchvision这两个依赖库,不然重新安装别的版本会报错。