Python Jupyter 的使用

1. 安装

pip install jupyter

2. 本机使用

登录到存档目录,使用缺省Notebook。

jupyter notebook

 访问:

http://localhost:8888

在某些版本中文语言的Ubuntu(1604)上,Jupyter会创建中文名的“Untitled.ipynb”,这样会有编码错误。

3. 更改配置,需要先生成配置文件,再更改缺省设置

jupyter notebook --generate-config

4. 在局域网其他机器上访问Jupyter Web UI

jupyter notebook --ip="* or IP Addr"
原文地址:https://www.cnblogs.com/herryzz/p/9928908.html