问题:
在pycharm上报错RuntimeError: module compiled against API version 0xe but this version of numpy is 0xd
即RuntimeError:根据API版本0xe编译的模块,但这个版本的numpy是0xd
原因:
是因为numpy的版本较低,本文最初使用的版本是numpy1.23.2,然后对numpy进行了升级,最后升级的版本为numpy1.23.4。
解决方法:
查看numpy版本:
本文是在终端里面查看的,代码如下:
pip show numpy
升级numpy,代码如下:文章来源:https://www.toymoban.com/news/detail-642695.html
pip install -U numpy
没有指定升级的numpy版本,我这里升级完后是numpy==1.23.4。
然后报错问题就成功解决了。文章来源地址https://www.toymoban.com/news/detail-642695.html
到了这里,关于RuntimeError: module compiled against API version 0xe but this version of numpy is 0xd的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!