Jupyter Notebook 的安装和使用教程

已关闭留言

Jupyter Notebook 是基于网页的用于交互计算的应用程序。其可被应用于全过程计算:开发、文档编写、运行代码和展示结果。一般来说,我们主要将其用于交互式 Python 开发比较多一些,可以把文档和代码结合在一起,非常方便。如果你有需要,可以看一下本文提供的安装和简单使用指南,不求最全,只求最快上手。

文章目录
隐藏
一、Jupyter Notebook 安装方法
二、Jupyter Notebook 使用方法
三、Jupyter Notebook 官方文档

一、Jupyter Notebook 安装方法

推荐使用 Python 3,如果你用的是 Python 3,直接使用下面命令:

python3 -m pip install --upgrade pip
python3 -m pip install jupyter

如果你使用的是 Python 2:

python -m pip install --upgrade pip
python -m pip install jupyter

二、Jupyter Notebook 使用方法

最简单的使用方法就是下面:

jupyter notebook

如果想指定端口:

jupyter notebook --port 9999

指定 IP:

jupyter notebook --ip 192.168.1.1

打开指定文件:

jupyter notebook notebook.ipynb

更多帮助:

jupyter notebook --help

三、Jupyter Notebook 官方文档

安装:《Installing the Jupyter Software》,

使用:《Running the Notebook》。