使用pip进行Tensorflow安装,导入不会发生

时间:2017-11-17 19:05:51

标签: python python-2.7 tensorflow

我使用pip安装了tensorflow,它显示成功但是当我导入tensorflow时会出现以下错误。

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/Users/dipendra/.local/lib/python2.7/site-packages/tensorflow/__init__.py", line 24, in <module>
    from tensorflow.python import *
  File "/Users/dipendra/.local/lib/python2.7/site-packages/tensorflow/python/__init__.py", line 51, in <module>
    from tensorflow.python import pywrap_tensorflow
  File "/Users/dipendra/.local/lib/python2.7/site-packages/tensorflow/python/pywrap_tensorflow.py", line 52, in <module>
    raise ImportError(msg)  
ImportError: Traceback (most recent call last):
  File "/Users/dipendra/.local/lib/python2.7/site-packages/tensorflow/python/pywrap_tensorflow.py", line 41, in <module>
    from tensorflow.python.pywrap_tensorflow_internal import *
  File "/Users/dipendra/.local/lib/python2.7/site-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 28, in <module>
    _pywrap_tensorflow_internal = swig_import_helper()
  File "/Users/dipendra/.local/lib/python2.7/site-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 24, in swig_import_helper
    _mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description)
ImportError: dlopen(/Users/dipendra/.local/lib/python2.7/site-packages/tensorflow/python/_pywrap_tensorflow_internal.so, 10): Library not loaded: @rpath/libcublas.8.0.dylib
  Referenced from: /Users/dipendra/.local/lib/python2.7/site-packages/tensorflow/python/_pywrap_tensorflow_internal.so
  Reason: image not found 
Failed to load the native TensorFlow runtime.

1 个答案:

答案 0 :(得分:1)

Tensorflow尝试加​​载以下依赖项:

libcublas

要解决此问题,请按以下步骤操作:

  • 确保安装了cuda for python(通过pip)
  • 确保将代码库安装路径添加到env-var LD_LIBRARY_PATH

您可以查看以下问题,了解如何执行此操作:Cannot find cuda