ERROR: Failed building wheel for torch_sparse

发布时间:2023年12月19日

问题:

直接使用pip安装torch_sparse,出现错误。

pip install torch_sparse
ERROR: Failed building wheel for torch_sparse
  Running setup.py clean for torch_sparse
Failed to build torch_sparse
ERROR: Could not build wheels for torch_sparse, which is required to install pyproject.toml-based projects

解决办法

1.查看本机的pytorch版本

>>> import torch
>>> torch.__version__
'1.12.1'

2.在https://pytorch-geometric.com/whl/选择匹配的版本。
在这里插入图片描述
3.点进去复制网址https://pytorch-geometric.com/whl/torch-1.12.1+cu116.html,就可以安装好了。torch_scatter也适用。

pip install torch_sparse==0.6.14 -f https://pytorch-geometric.com/whl/torch-1.12.1+cu116.html
pip install torch_scatter==2.1.0 -f https://pytorch-geometric.com/whl/torch-1.12.1+cu116.html
文章来源:https://blog.csdn.net/m0_46698362/article/details/135062430
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。