导入tensorflow时出现numpy版本错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了导入tensorflow时出现numpy版本错误相关的知识,希望对你有一定的参考价值。
我已经为tensorflow执行了pip install
。
在python命令行环境下,当我尝试
import tensorflow as tf
我遇到了以下错误:
RuntimeError: module compiled against API version 0xa but this version of numpy is 0x9
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python2.7/dist-packages/tensorflow/__init__.py", line 23, in <module>
from tensorflow.python import *
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/__init__.py", line 49, in <module>
from tensorflow.python import pywrap_tensorflow
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 28, in <module>
_pywrap_tensorflow = swig_import_helper()
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 24, in swig_import_helper
_mod = imp.load_module('_pywrap_tensorflow', fp, pathname, description)
ImportError: numpy.core.multiarray failed to import
我用numpy
检查了我的print numpy.__version__
版本。它显示了"1.8.2"
。那么,我现在该怎么办?谢谢!
答案
从错误中,看起来你正在从usr/local/bin
运行python 2.7。你的numpy
版本和tensorflow
安装之间存在不匹配问题。我建议您安装anaconda,因为它将确保安装与tensorflow
版本兼容的正确版本的numpy
。
一旦你有了anaconda,那么:
conda install -c conda-forge tensorflow
以上是关于导入tensorflow时出现numpy版本错误的主要内容,如果未能解决你的问题,请参考以下文章