This post is from a low-reputation account and contains an unverified outbound link. Be cautious before clicking external links.

搭建Jupyter Notebook服务器

Words
48
Reading
1 min
Listen
Play
9y

操作系统: Raspbian

1.安装Jupyter Notebook

pip install -U 'ipython[notebook]'

2.创建配置文件

jupyter notebook --generate-config

3.修改配置

c.NotebookApp.open_brower = False #不需要在服务器上打开浏览器
c.NotebookApp.ip = '0.0.0.0' #监听网络
c.NotebookApp.password = u'' #不需要密码
c.NotebookApp.token = '' #不需要token

4.使Jupyter Notebook在用户退出后继续运行

nohup jupyter notebook

5.登入你的IP地址: x.x.x.x:8080

Quelle: https://python.freelycode.com/contribution/detail/846

搭建Jupyter Notebook服务器 | Ecency