Why does this happen? I'm using the same python kernel.
When I import tensor flow in terminal python, it works fine.
$ 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
>>>
However, when I try to open ipython notebook and import it does not work:
ImportError Traceback (most recent call last)
<ipython-input-1-a649b509054f> in <module>()
----> 1 import tensorflow
ImportError: No module named tensor flow
Why?