python - 从源目录导入 TensorFlow 是什么意思?

标签 python machine-learning tensorflow

我尝试在 Anaconda docker 容器中使用 TensorFlow,但收到错误:

Error importing tensorflow. Unless you are using bazel, you should not try to import tensorflow from its source directory; please exit the tensorflow source tree, and relaunch your python interpreter from there.

但是,我不知道源目录是什么意思。源目录是什么意思以及从中导入tensorflow意味着什么?为什么这样做不好?

我只是在做:

nvidia-docker run -ti  --rm continuumio/anaconda3 bash

然后在我正在做的容器内部:

pip install tensorflow-gpu

然后我进入 python3 解释器并在导入tensorflow后收到该错误。

<小时/>

为了完整起见,完整的错误消息是:

root@01452be96fe9:/# python3
Python 3.5.2 (default, Nov 17 2016, 17:05:23)
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import tensorflow
Traceback (most recent call last):
  File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/__init__.py", line 49, in <module>
    from tensorflow.python import pywrap_tensorflow
  File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 28, in <module>
    _pywrap_tensorflow = swig_import_helper()
  File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 24, in swig_import_helper
    _mod = imp.load_module('_pywrap_tensorflow', fp, pathname, description)
  File "/usr/lib/python3.5/imp.py", line 242, in load_module
    return load_dynamic(name, filename, file)
  File "/usr/lib/python3.5/imp.py", line 342, in load_dynamic
    return _load(spec)
ImportError: libcudart.so.8.0: cannot open shared object file: No such file or directory

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python3.5/dist-packages/tensorflow/__init__.py", line 24, in <module>
    from tensorflow.python import *
  File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/__init__.py", line 60, in <module>
    raise ImportError(msg)
ImportError: Traceback (most recent call last):
  File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/__init__.py", line 49, in <module>
    from tensorflow.python import pywrap_tensorflow
  File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 28, in <module>
    _pywrap_tensorflow = swig_import_helper()
  File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 24, in swig_import_helper
    _mod = imp.load_module('_pywrap_tensorflow', fp, pathname, description)
  File "/usr/lib/python3.5/imp.py", line 242, in load_module
    return load_dynamic(name, filename, file)
  File "/usr/lib/python3.5/imp.py", line 342, in load_dynamic
    return _load(spec)
ImportError: libcudart.so.8.0: cannot open shared object file: No such file or directory


Error importing tensorflow.  Unless you are using bazel,
you should not try to import tensorflow from its source directory;
please exit the tensorflow source tree, and relaunch your python interpreter
from there.

最佳答案

源目录是包含 TensorFlow 安装的目录。 Python 感到困惑的是,它在本地查看 TensorFlow 源文件,而不仅仅是在 PYTHONPATH 中。该错误消息要求您从 TensorFlow 安装目录以外的位置运行解释器。

关于python - 从源目录导入 TensorFlow 是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42150087/

相关文章:

machine-learning - scikit-learn RandomForestClassifier 中的子样本大小

performance - 训练文档的数量对分类时间有什么影响?

python - 在Embedding Layer之后应用Dropout Layer和通过LSTM dropout参数应用dropout效果一样吗?

Python的多处理。Unix下处理一切完美,Windows下完全失败

python - 如何在不位于任务托盘的情况下运行脚本?

r - 在 R 中绘制二进制目标 (mlr) 的部分依赖图

python - 在固定训练时间后保存 tensorflow 模型

python - 使用 Keras 微调 ResNet50 - val_loss 不断增加

Python:如何使用 feedparser 和 etags 检查 RSS 更新

python - 如何转储整个 Python 进程以供以后调试检查?