2016-11-07 19 views
0

私はubuntu 14.04です。 i'amインポートtensorflowubuntuでテンソルフローをインポートする際のエラー

>>> import tensorflow 

場合

:私は輸入tensorflowを実行したときしかし、このエラーを得ました。

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 

この問題はどのように解決されましたか?

答えて

1

numpyのバージョンを10(現在のバージョンは9)に更新する必要があります。

+0

私にコマンドをお願いします – MohaMed

関連する問題