Jupyter Notebook(前身是IPython Notebook)是一个基于Web的交互式计算环境,用于创建Jupyter Notebook文档。Notebook一词可以通俗地引用许多不同的实体,主要是Jupyter Web应用程序、Jupyter Python Web服务器或Jupyter文档格式(取决于上下文)。Jupyter Notebook文档是一个JSON文档,遵循版本化模式,包含一个有序的输入/输出单元格列表,这些单元格可以包含代码、文本(使用Markdown语言)、数学、图表和富媒体,通常以“.ipynb”结尾扩展。
安装过程
安装前提
- python>3.3 或者python=2.7
安装步骤
1 | pip install notebook |
启动Jupyter Notebook
1 | jupyter notebook |
参考链接
- Jupyter,by wikipedia.
- Installing the Jupyter Software,by jupyter.
- Matplotlib animation not working in IPython Notebook (blank plot),by stackoverflow.