安装 torch-scatter,torch-sparse 出现error: Command errored out with exit status 1

部分内容参考文章,感谢这位博主

在已经正确安装pytorch的情况下,pip install torch-scatter, torch-sparse 仍然遇到问题, ERROR: Command errored out with exit status 1;

UserWarning: Error checking compiler version for cl: [WinError 2] 系统找不到指定的文件;

ERROR: Failed building wheel for torch-scatter

等等一大串报错。那么可以尝试将whl文件下载至本地,然后pip install 安装。

网址:https://pytorch-geometric.com/whl/好对应的 torch+cpu/cuda版本

点进去选择匹配的 系统+python版本 的whl文件下载。

下载后,安装(假设存储在D盘download文件夹):

pip install "D:\download\torch_scatter-2.0.6-cp38-cp38-win_amd64.whl"
pip install "D:\download\torch_sparse-0.6.9-cp38-cp38-win_amd64.whl"

PS:如果出现Microsoft Visual C++ is required,那么根据提示的网址下载Visual Studio Installer,安装C++ Build Tools,就能解决。

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