为什么会这样?我使用相同的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
为什么?