
pytorch报错 RuntimeError: Numpy is not available
其实还是numpy和pytorch版本不匹配的问题,建议可以用bard或者new bing搜一下对应的版本,我没有找到相应的文档,问了bard给出的答案。
·
看了几个文章,有的说是要安装tensorflow解决此问题,尝试了没有成功。
尝试从头开始debug,发现会出现如下错误:
UserWarning: Failed to initialize NumPy: module compiled against API version 0x10 but this version of numpy is 0xf . Check the section C-API incompatibility at the Troubleshooting ImportError section at https://numpy.org/devdocs/user/troubleshooting-importerror.html#c-api-incompatibility for indications on how to solve this problem . (Triggered internally at ..\torch\csrc\utils\tensor_numpy.cpp:84.)
其实还是numpy和pytorch版本不匹配的问题,建议可以用bard或者new bing搜一下对应的版本,我没有找到相应的文档,问了bard给出的答案。
例如我现在使用的pytorch版本是2.0+cu117,对应的numpy版本可以使用1.24
第一步:
pip uninstall numpy
第二步:
pip install numpy==1.24
成功!
更多推荐
所有评论(0)