torch-geometric安装详细步骤

一、安装pytorch和对应驱动

1 进入官网 pytorch.org,我安装的是1.9.0版本  cuda11.1

torch-geometric安装详细步骤_第1张图片

conda install pytorch torchvision torchaudio cudatoolkit=11.1 -c pytorch -c conda-forge

二、安装torch- geometric

官方链接:Installation — pytorch_geometric 2.0.0 documentation

1、pip方式安装

安装相关依赖库

pip install --no-index torch-scatter -f https://pytorch-geometric.com/whl/torch-1.9.0+cu111.html
pip install --no-index torch-sparse -f https://pytorch-geometric.com/whl/torch-1.9.0+cu111.html
pip install --no-index torch-cluster -f https://pytorch-geometric.com/whl/torch-1.9.0+cu111.html
pip install --no-index torch-spline-conv -f https://pytorch-geometric.com/whl/torch-1.9.0+cu111.html

安装torch-geometric

pip install torch-geometric

2、conda 方式安装

torch-geometric安装详细步骤_第2张图片

conda install pytorch-geometric -c rusty1s -c conda-forge

三、测试,没有报错就说明安装成功了

python -c "import torch_geometric"

你可能感兴趣的:(pytorch,深度学习,python)