错误提示:
note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for numpy Failed to build numpy
ERROR: ERROR: Failed to build installable wheels for some pyproject.toml based projects (numpy)
参考文章:
第一篇文章中的链接无法使用了,但是第二篇的清华源可以使用
错误原因:
找不到对应的whl文件
NumPy 的 .whl 文件命名规则如下:
文件名格式:numpy-{version}-cp{python_version}-cp{python_version}m-{platform}.whl
{version} 是 NumPy 的版本号,{python_version} 是 Python 版本号(如 310 代表 Python 3.10),{platform} 是你的操作系统和架构。
例如,对于 NumPy 1.24.2 和 Python 3.10,.whl 文件名可能类似于:
numpy-1.24.2-cp310-cp310-win_amd64.whl(Windows 64-bit)
numpy-1.24.2-cp310-cp310-manylinux_2_28_x86_64.whl(Linux)
进入清华源的numpy库,链接:https://pypi.tuna.tsinghua.edu.cn/simple/numpy/
发现我想要安装的numpy1.21.1没有对应的,我使用的python3.10版本,但numpy1.21.3中刚好有,遂直接下载numpy1.21.3
pip install numpy==1.21.3 -i https://pypi.tuna.tsinghua.edu.cn/simple