其他分享
首页 > 其他分享> > PyTorch Geometric(图卷积)环境安装 —— GPU

PyTorch Geometric(图卷积)环境安装 —— GPU

作者:互联网

1. 安装PyTorch

         进入 Pytorch 官网 pytorch.org,安装自己需要的版本。(我的是1.7.1版本  cuda11.0)

注意:Pytotch 最低为 1.4.0 以上

pip install torch==1.7.1+cu110 torchvision==0.8.2+cu110 torchaudio==0.7.2 -f https://download.pytorch.org/whl/torch_stable.html

 2. 安装PyTorch Geometric

        官方链接:Installation — pytorch_geometric 2.0.0 documentation

pip install --no-index torch-scatter -f https://pytorch-geometric.com/whl/torch-1.7.1+cu110.html
pip install --no-index torch-sparse -f https://pytorch-geometric.com/whl/torch-1.7.1+cu110.html
pip install --no-index torch-cluster -f https://pytorch-geometric.com/whl/torch-1.7.1+cu110.html
pip install --no-index torch-spline-conv -f https://pytorch-geometric.com/whl/torch-1.7.1+cu110.html
pip install torch-geometric -f https://data.pyg.org/whl/torch-1.7.1+cu110.html

注意:上述相关依赖库 也可以进入官网下载后离线安装。网址:https://pytorch-geometric.com/whl/

3. 测试

        没有报错就说明安装成功了

python -c "import torch_geometric"

公众号:清纯世纪 

标签:1.7,torch,PyTorch,cu110,pytorch,https,GPU,Geometric,geometric
来源: https://blog.csdn.net/qq_45100200/article/details/121090553