方法参照我的这篇文章https://blog.csdn.net/weixin_51736742/article/details/118388965
用刚刚创建的pytorch环境
方法:
https://blog.csdn.net/weixin_51736742/article/details/119209259安
1.查看自己的pytorch版本
(1)在pycharm新建一个test.py的文件,运行后即可得出pytorch版本.
import torch
print(torch.__version__)
2.进入PyTorch Geometric官网
网址:https://pytorchgeometric.readthedocs.io/en/latest/notes/installation.html
依据版本信息选择命令
进行安装
安装完成
3.安装相关包
pip install torch-scatter
pip install torch-sparse
pip install torch-geometric
4.安装其他包(可选)
pip install torch-cluster
pip install torch-spline-conv
全部安装完成即可使用
出现错误可以参照官网解决方法