python 安装第三方库matplotlib遇到Failed building wheel for numpy (pyproject.toml)问题
今天安装第三方库matplotlib时出现了问题, 看失败提示为安装依赖库numpy时出现了Failed building wheel for numpy问题。第一个尝试是直接安装numpy, 发现失败,同样提示Failed building wheel for numpy经过反复更换关键字搜索, 找到两篇对我帮助很大的博客:https://blog.csdn.net/RHJlife/articl
·
今天安装第三方库matplotlib时出现了问题, 看失败提示为安装依赖库numpy时出现了Failed building wheel for numpy问题。
第一个尝试是直接安装numpy, 发现失败,同样提示Failed building wheel for numpy
经过反复更换关键字搜索, 找到两篇对我帮助很大的博客:
https://blog.csdn.net/RHJlife/article/details/90255951
https://blog.csdn.net/dxy819308563/article/details/120803802
根据第一篇博客所写错误原因判断我的环境缺失相应numpy的whl文件
所以去根据第二篇博客中提供的网站:
以及判断方法选择了
numpy版本号为1.22.2 python版本为3.10, python位数为32位的whl文件
numpy‑1.22.2+mkl‑cp310‑cp310‑win32.whl
下载后通过命令pip install xxx
(命令中的xxx为下载的numpy‑1.22.2+mkl‑cp310‑cp310‑win32.whl路径)
更多推荐
已为社区贡献1条内容
所有评论(0)