Reputation: 4407
I used to use ipython notebook before it was called Jupyter. However, when I tried to open that again (I have already updated all the ipython and python), the interface looks so weird like this
I also tried to install jupyter following the instruction online but I can't initiate it at all. Any idea about how to fix it?
Upvotes: 1
Views: 8254
Reputation: 550
I had the same issue. To fix the immediate issue, I ran:
python setup.py install
However, this points to a more pressing problem; your installation is missing dependencies. At the time, I resolved the problem by restarting the installation with a few changes:
pip install iPython
and pip install iPython[notebook]
However, my CS professor recommended using Anaconda instead: http://continuum.io/downloads
Upvotes: 2