https://blog.csdn.net/MYRLibra/article/details/109599531
https://blog.csdn.net/weixin_40641725/article/details/114636779
conda activate abc #激活虚拟环境
pip install jupyter #安装
jupyter notebook --generate-config #生成配置文件
from IPython.lib import passwd
passwd()
vim ~/.jupyter/jupyter_notebook_config.py
c.NotebookApp.ip='*'
c.NotebookApp.password = u'sha1:xxxxxxxxxxx(上一步生成的密文)'
c.NotebookApp.port = 9999 #随便指定一个闲置端口
c.NotebookApp.open_browser = False #禁止自动打开浏览器
c.NotebookApp.allow_remote_access = True #远程访问
c.NotebookApp.allow_root = True
c.NotebookApp.notebook_dir = '' # 这里写目录,可以相对地址,设置根目录,限制访问
nohup jupyter notebook > jupyter.log 2>&1 &
ps -aux|grep jupyter notebook
ip:port
,第三步配置的 port
和局域网服务器 IP
即可访问使用花生壳进行内网穿透
https://hsk.oray.com/
把 linux 服务器的命令拿下来执行,安装 dpkg -i xxx.deb
phddns status
查看 SN
3. 进入 花生壳的 管理页面
4. 新建隧道就可
因为要通过http访问,所以新建隧道时候选择 https 协议,这样就可以在自己本机通过浏览器访问到局域网的 Jupyter Server