在AWS上安装了Ubuntu 16.0上的tensorflow之后, 使用:
conda install -c conda-forge tensorflow=1.2.1
在终端SSH上输入时:
ipython
import tensorflow as tf
tf.__version__
它返回1.2.1,一切都很好。
但是,当这个代码在Jupyter Ipython笔记本上运行时 从相同的python安装(anaconda)启动, 我收到了这个错误:
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-2-b6f7b46cc0dd> in <module>()
1 import tensorflow as tf
----> 2 tf.__version__
AttributeError: module 'tensorflow' has no attribute '__version__'
不知道自python发布以来这个错误会如何发生 是一样的。
有没有办法检查Tensorflow的安装?
编辑: 这篇文章https://github.com/tensorflow/tensorflow/issues/3369 显示它可能与sudo访问某些文件夹....安装时有关。 TBD