我无法在jupyter笔记本中导入张量流,但我可以在终端python中导入它

时间:2017-01-05 08:32:59

标签: python ipython-notebook

为什么会这样?我使用相同的python内核。

当我在终端python中导入张量流时,它工作正常。

$ python
Python 2.7.11 (v2.7.11:)
[GCC 4.2.1 (Apple Inc.) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.

>>> import tensorflow
>>> 

然而,当我尝试打开ipython笔记本并导入它时不起作用:

ImportError       Traceback (most recent call last)
<ipython-input-1-a649b509054f> in <module>()
----> 1 import tensorflow

ImportError: No module named tensor flow

为什么?

1 个答案:

答案 0 :(得分:0)

您需要安装tensorflow包才能使其正常工作。 看看这篇文章: ipython install new modules