解决mac安装完torch_geometric,import的时候报错的问题。

问题描述

使用torch_geometric官方的命令安装好了torch_geometric,安装的过程非常丝滑流畅,但是安装好了import的时候就报错OSerror......

注意事项

不要用他生成的命令安装:

解决mac安装完torch_geometric,import的时候报错的问题。_第1张图片

这个命令安装的 torch-geometric的四个依赖库torch-scatter,torch-sparse,torch-spline-conv,torch-cluster的版本有问题。

解决方法

1. 先运行

pip install torch-geometric

安装torch-geometric。

2. 从官网下载与自己的pytorch版本对应的其它四个包的.whl文件。链接:https://pytorch-geometric.readthedocs.io/en/latest/notes/installation.html

​​​​​​​解决mac安装完torch_geometric,import的时候报错的问题。_第2张图片

点here进去找到自己的pytorch版本号,点进去下载torch-scatter,torch-sparse,torch-spline-conv,torch-cluster四个包的.whl文件。

3. 打开终端进入下载的文件夹位置,使用pip安装这四个包。

pip install torch_cluster-1.5.9-cp38-cp38-macosx_10_9_x86_64.whl
pip install torch_scatter-2.0.7-cp38-cp38-macosx_10_9_x86_64.whl
pip install torch_sparse-0.6.9-cp38-cp38-macosx_10_9_x86_64.whl
pip install torch_spline_conv-1.2.1-cp38-cp38-macosx_10_9_x86_64.whl

 4. 完成。

解决mac安装完torch_geometric,import的时候报错的问题。_第3张图片

 

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