Ipython Notebook Not Launching
I cannot get ipython notebook to launch. I used the command 'ipython notebook' in command prompt but I got an error saying that 'ipython' is not recognized as a command. I have Pyt
Solution 1:
Reposting as an answer:
Looks like you don't have pyzmq installed. You can install it with pip or an exe installer. But there will probably be other things you don't have set up. We recommend downloading something like Anaconda, which includes all the necessary packages. If you want to use Python 3, you could try Pyzo, which is similar.
Solution 2:
As of writing, it's normal to get these messages. It just means you are missing some python packages. I suggest installing them as follows: pip install --user [package]
. The other ones it might complain about are listed here:
jinja2, needed forthe notebook
sphinx, needed fornbconvert
pyzmq, needed forIPython’s parallel computing features, qt console and notebook
pygments, used by nbconvert and the Qt console forsyntax highlighting
tornado, needed by the web-based notebook
nose, used by the test suite
Post a Comment for "Ipython Notebook Not Launching"