【问题标题】:Failed to load the native TensorFlow runtime. Reason : Image not found. What am I doing wrong?无法加载原生 TensorFlow 运行时。原因:找不到图像。我究竟做错了什么?
【发布时间】:2017-08-03 01:09:33
【问题描述】:

在配备四核 I7 和 NVIDIA GeForce GT 650M 的 Macbook Pro 上运行。

从 virtualenv 运行 Tensorflow 时收到此错误消息。我做错了什么?我正在使用 protobuf 版本 3.2.0

{

(tensorflow) m:src sm$ python
Python 2.7.10 (default, Jul 13 2015, 12:05:58) 
[GCC 4.2.1 Compatible Apple LLVM 6.1.0 (clang-602.0.53)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import tensorflow as tf
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/Users/smahesh/src/tensorflow/lib/python2.7/site-packages/tensorflow/__init__.py", line 24, in <module>
    from tensorflow.python import *
  File "/Users/smahesh/src/tensorflow/lib/python2.7/site-packages/tensorflow/python/__init__.py", line 72, in <module>
    raise ImportError(msg)
ImportError: Traceback (most recent call last):
  File "/Users/smahesh/src/tensorflow/lib/python2.7/site-packages/tensorflow/python/__init__.py", line 61, in <module>
    from tensorflow.python import pywrap_tensorflow
  File "/Users/smahesh/src/tensorflow/lib/python2.7/site-packages/tensorflow/python/pywrap_tensorflow.py", line 28, in <module>
    _pywrap_tensorflow = swig_import_helper()
  File "/Users/smahesh/src/tensorflow/lib/python2.7/site-packages/tensorflow/python/pywrap_tensorflow.py", line 24, in swig_import_helper
    _mod = imp.load_module('_pywrap_tensorflow', fp, pathname, description)
ImportError: dlopen(/Users/smahesh/src/tensorflow/lib/python2.7/site-packages/tensorflow/python/_pywrap_tensorflow.so, 10): Library not loaded: @rpath/libcudart.8.0.dylib
  Referenced from: /Users/smahesh/src/tensorflow/lib/python2.7/site-packages/tensorflow/python/_pywrap_tensorflow.so
  Reason: image not found


Failed to load the native TensorFlow runtime.

See https://github.com/tensorflow/tensorflow/blob/master/tensorflow/g3doc/get_started/os_setup.md#import_error

}

【问题讨论】:

  • 你用的是mac吗?
  • 您是否阅读了错误消息中给出的链接中的说明?
  • 可能你使用的是你的 macine 不支持的 -gpu 库
  • 我也有同样的问题。我已经在 Debian 机器上安装了带有原生 pip 的 Tensorflow,并且安装运行成功。但是,当我尝试在 python 中导入 Tensorflow 时,出现此错误。 (链接处的github页面没有找到!

标签: python tensorflow virtualenv


【解决方案1】:
pip install --upgrade 
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.0.1-py2-
none-any.whl 

但它往往是:

File "/Users/yuanyinjiao/anaconda/lib/python2.7/site-
packages/pip/_vendor/pkg_resources/__init__.py", line 1823, in _has
return zip_path in self.zipinfo or zip_path in self._index()
File "/Users/yuanyinjiao/anaconda/lib/python2.7/site-
packages/pip/_vendor/pkg_resources/__init__.py", line 1703, in zipinfo
        return self._zip_manifests.load(self.loader.archive)
      File "/Users/yuanyinjiao/anaconda/lib/python2.7/site-packages/pip/_vendor/pkg_resources/__init__.py", line 1643, in load
            mtime = os.stat(path).st_mtime

OSError: [Errno 2] No such file or directory: '/Users/yuanyinjiao/anaconda/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg'

所以我从https://pypi.python.org/pypi/setuptools/0.6c11 下载 setuptools-0.6c11-py2.7.egg 终于成功了。

  Found existing installation: tensorflow 1.0.1
    Uninstalling tensorflow-1.0.1:
      Successfully uninstalled tensorflow-1.0.1
Successfully installed tensorflow-1.0.1
yuanyinjiaodeMacBook-Pro:downloads yuanyinjiao$ python
Python 2.7.13 |Anaconda 4.4.0 (x86_64)| (default, Dec 20 2016, 23:05:08) 
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.57)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
Anaconda is brought to you by Continuum Analytics.
Please check out: http://continuum.io/thanks and https://anaconda.org
>>> import tensorflow
>>> import tensorflow

【讨论】:

    【解决方案2】:

    感谢您的所有建议。我尝试使用

    安装仅 CPU 版本的 TensorFlow
    {
    pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.0.1-py2-none-any.whl
    }
    

    解决了这个问题。有趣的是消息指出我没有使用 GPU。

    {
    Python 2.7.10 (default, Jul 13 2015, 12:05:58) 
    [GCC 4.2.1 Compatible Apple LLVM 6.1.0 (clang-602.0.53)] on darwin
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import tensorflow as tf
    >>> hello = tf.constant('Hello, TensorFlow!')
    >>> sess = tf.Session()
    W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use SSE4.1 instructions, but these are available on your machine and could speed up CPU computations.
    W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use SSE4.2 instructions, but these are available on your machine and could speed up CPU computations.
    W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use AVX instructions, but these are available on your machine and could speed up CPU computations.
    >>> print(sess.run(hello))
    Hello, TensorFlow!
    }
    

    【讨论】:

    • 当。无论如何要在Mac上得到这个?我知道 GPU 不适用于 Docker 上的 Mac
    • pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.1.0-py3-none-any.whl for python3 ;)
    猜你喜欢
    • 2018-11-25
    • 2017-11-21
    • 1970-01-01
    • 1970-01-01
    • 2013-08-06
    • 1970-01-01
    • 2020-04-28
    • 2023-03-24
    • 2018-12-05
    相关资源
    最近更新 更多