安装torch_sparse失败解决方法

使用PyG时遇到的一些小问题
当安装torch_sparse时出现以下错误
安装torch_sparse失败解决方法_第1张图片
试了多种方法,最后发现是包之间的依赖问题,只需要对应好版本号就可以解决。

pip install torch_geometric==1.4.1
pip install torch_sparse==0.4.4
pip install torch_scatter==1.4.0
pip install torch_cluster==1.4.5

成功安装
在这里插入图片描述

你可能感兴趣的:(python,python,pytorch)