I have been running in circles trying to get tensorflow to work in a jupyter notebook. I installed it via pip on ubuntu and also tried a conda environment (but unless I'm mistaken, getting that to work with ipython is beyond my ability). Tensorflow works fine in python3.4, but not python 3.5, which is used when I load ipython. I'm not sure if this question makes any sense, but can I make it so that ipython uses only python 3.4? The reason I need to use ipython instead of going through the python shell is that I am trying to use the kadenzie tutorial.
Thank you.
Edit: I'm not sure how applicable this is to other people with my problem, but I solved it by changing my conda python version (conda install python=3.4.3), uninstalling ipython, and then reinstalling it.