This is an old revision of the document!
Jupyter Notebook是以网页的形式打开,可以在网页页面中直接编写代码和运行代码,代码的运行结果也会直接在代码块下显示。如在编程过程中需要编写说明文档,可在同一个页面中直接编写,便于作及时的说明和解释。
小白用户(并且磁盘剩余空间超过3G)推荐通过Anaconda安装,Anaconda包括Jupyter以及其他科学计算相关包。
Python高级用户可以使用Pip安装,安装包名称是jupyter
jupyter notebook # 指定端口 jupyter notebook --port <port_number> # 不自动打开浏览器 jupyter notebook --no-browser