解决RuntimeError:module compiled against API version 9 but this version of numpy is 7

由于使用TensorFlow 经常会涉及到使用numpy,但会出现API版本不匹配问题:


要么是numpy有多个版本,要么是numpy只有最低版本。

解决RuntimeError:module compiled against API version 9 but this version of numpy is 7_第1张图片

现在的版本是1.7的,去对应目录下删除该版本的numpy的文件,然后重新安装新版numpy

由于直接使用pip和yum进行安装均不成功,所以只好下载 nump的zip文件进行安装:

首先下载:wget http://jaist.dl.sourceforge.net/project/numpy/NumPy/1.11.0/numpy-1.11.0.zip

然后解压:unzip numpy-1.11.0.zip

之后安装:cd numpy-1.11.0;python setup.py install

最后测试:

解决RuntimeError:module compiled against API version 9 but this version of numpy is 7_第2张图片

你可能感兴趣的:(机器学习,错误记录)