前言
想要去用jupyter远程访问我们实验室的服务器,于是参考网上教程如下:
具体操作
一. Ubuntu下安装jupyter notebook
1. 使用Anaconda安装
1
| conda install jupyter notebook
|
2. 使用pip安装
1
| pip install jupyter notebook
|
二. Jupyter notebook 配置
1. 生成配置文件
1
| jupyter notebook --generate-config
|
2. 创建密码
使用python中的passwd()
创建密码,终端输入ipython
打开ipython并输入:
1 2 3 4 5
| In [1]: from notebook.auth import passwd In [2]: passwd() Enter password: ****** Verify password: ****** Out [2]: 'sha1:...'
|
复制Out [2] 显示的密码('sha1:...' 包括引号)。
3. 修改jupyter notebook的配置文件
1
| vim ~/.jupyter/jupyter_notebook_config.py
|
1 2 3 4 5
| c.NotebookApp.allow_remote_access = True c.NotebookApp.ip='*' c.NotebookApp.password = u'sha:..' c.NotebookApp.open_browser = False c.NotebookApp.port =23333
|
4. 启动jupyter notebook
终端输入:
或使用nohup
后台运行 jupyter notebook:
1
| nohup jupyter notebook >~/jupyter.log 2>&1 &
|
5. 远程访问jupyter notebook
本地浏览器输入http://(服务器地址):(配置文件中设定的端口)
; 假设服务器地址为210.30.97.69,配置的端口为23333,这里的浏览器输入地址应为http://210.30.97.69:23333
; 即可访问jupyter notebook。
注
只能通过和服务器所在的局域网来访问,也就是校园网可以正常访问服务器,外网不可。试过用电脑连接我手机热点,无法访问