0. 简介
Jupyter Notebook(此前被称为 IPython notebook)是一个交互式笔记本。其notebook可以在浏览器下运行python脚本。
与ipython相比,在不需要过多的文件配置。
1. 使用环境
服务器端环境:
Python 3.6.2 :: Anaconda custom (64-bit)
客户端环境:
任何一款浏览器
2. 安装
python3 -m pip install jupyter
3. 使用方法
在官网上看到两份说明:
其描述过于繁琐。
以前用过ipython notebook 确实是需要配置服务器。今天尝试使用jupyter后发现并没有以前那么麻烦:
要想实现远程使用服务器的python 环境仅需
jupyter notebook --ip=<ip地址> --no-browser --port=<端口号> --notebook-dir=<工作目录>
实例:
jupyter notebook --ip=192.168.XXX.XXX --no-browser --port=9999 --notebook-dir=/home/liz/
远程服务器控制台输出:
参考文献:
Python·Jupyter Notebook各种使用方法记录·持续更新
by 2018-02-04