pyg安装——ERROR: Failed building wheel for torch-sparse
Posted 不想学python的sherry
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pyg安装——ERROR: Failed building wheel for torch-sparse相关的知识,希望对你有一定的参考价值。
pyg安装——ERROR: Failed building wheel for torch-sparse
pyg安装的时候最开始还好好的,然后就出现torch-sparse安装出问题了,记录一下解决的办法
torch-sparse安装失败
最近做图神经网络,需要自己安装pyg
在安装好torch之后,我从网上找到了pyg的安装过程
pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-1.10.0+cpu.html
pip install torch-sparse -f https://pytorch-geometric.com/whl/torch-1.10.0+cpu.html
pip install torch-cluster -f https://pytorch-geometric.com/whl/torch-1.10.0+cpu.html
pip install torch-spline-conv -f https://pytorch-geometric.com/whl/torch-1.10.0+cpu.html
pip install torch-geometri
但是在安装torch-sparse包的时候出现了小问题:
ERROR: Failed building wheel for torch-sparse
看到了一个大神的解决办法:
解决方法:指定torch-sparse版本
解决方法:指定torch-sparse版本
pip install torch-sparse==0.6.13 -f https://pytorch-geometric.com/whl/torch-1.10.0+cu113.html
试了试,成功了。
新的问题 : OSError: [WinError 127] 找不到指定的程序
就是另外的错
原因:根本原因是torch-scatter torch-sparse torch-cluster torch-spline-conv这些关联包跟torch版本不匹配
办法:需要把这些关联包重新装成关联的版本就行了。
具体如下:
(1)卸载掉之前装好的包:torch-scatter torch-sparse torch-cluster torch-spline-conv
pip uninstall torch-scatter torch-sparse torch-cluster torch-spline-conv
然后,输入pip list显示自己torch版本:(我在conda环境里输入的)
由于我的是CPU版本(电脑没有GPU),torch版本为1.13.0,所以我的输入是:(重点在后面的那部分torch-1.13.0+cpu.html)
pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-1.13.0+cpu.html
pip install torch-sparse -f https://pytorch-geometric.com/whl/torch-1.13.0+cpu.html
pip install torch-cluster -f https://pytorch-geometric.com/whl/torch-1.13.0+cpu.html
pip install torch-spline-conv -f https://pytorch-geometric.com/whl/torch-1.13.0+cpu.html
pip install torch-geometric
GPU版本可以参考文章:
彻底解决 OSError: [WinError 127] 找不到指定的程序
参考文献:
【图神经网络系列】基于cpu安装PyG
ERROR: Failed building wheel for torch-sparse
以上是关于pyg安装——ERROR: Failed building wheel for torch-sparse的主要内容,如果未能解决你的问题,请参考以下文章
安装 APK 时出现 DELETE_FAILED_INTERNAL_ERROR 错误
安装Intel HAXM:"failed to configure driver unknown error. failed to open driver"