搭建Jupyter Notebook服务器

in cn •  7 years ago  (edited)

操作系统: 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

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!