pip install jupyterjupyter notebook结果如下:
$ jupyter notebook
[I 08:58:24.417 NotebookApp] Serving notebooks from local directory: /Users/catherine
[I 08:58:24.417 NotebookApp] 0 active kernels
[I 08:58:24.417 NotebookApp] The Jupyter Notebook is running at: http://localhost:8888/
[I 08:58:24.417 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).在浏览器中输入http://localhost:8888,就出现了notebook的页面。

Paste_Image.png
也可以指定服务器监听的端口:
jupyter notebook --port 9999使用下面的命令获取帮助:
jupyter notebook --help指定配置文件:
jupyter notebook --config=/path/to/myconfig.pyjupyte notebook文件后缀名为".ipynb"。
notebook文档结构包括以下几种:
Shift-Enter:执行当前单元,显示输出结果,并跳至下一单元。 Ctrl-Enter:执行当前单元,显示输出结果,但游标依然位于当前单元。 Alt-Enter:执行当前单元,并在下方插入单元 Esc:退出编辑模式,进入视图模式 Enter:进入编辑模式