Ipython laptop not starting

I can not start the ipython laptop. I used the ipython notebook command on the command line, but I got a message saying that ipython is not recognized as a command. I have Python 3.3 and ipython 1.2.1. This command works on my other windows machine, and I used the same process to install ipython. The only difference is that I'm using Python 2.7 on another Windows machine. I feel like there is a really simple fix, or I made a stupid mistake. Any ideas?

Edit: I tried ThomasK's suggestion in the comments below and received the following error, shown in the image below.

Ipython notebook error on call

0
source share
2 answers

Sending as an answer:

It looks like you do not have pyzmq. You can install it using pip or exe installer. But there will probably be other things that you did not create. We recommend downloading something like Anaconda, which includes all the necessary packages. If you want to use Python 3, you can try Pyzo, which seems to be.

+1
source

From the moment of writing, it is normal to receive these messages. It just means you are missing python packages. I suggest installing them as follows: pip install --user [package] . Others he may complain about are listed here :

 jinja2, needed for the notebook sphinx, needed for nbconvert pyzmq, needed for IPython's parallel computing features, qt console and notebook pygments, used by nbconvert and the Qt console for syntax highlighting tornado, needed by the web-based notebook nose, used by the test suite 
+1
source

All Articles