jupyterlab操作
新增配置文件
jupyter lab --generate-config
需要修改的一些配置
# 远程访问
c.ServerApp.allow_remote_access = True
# 远程访问主机
c.ServerApp.ip = '*'
# 根目录
c.ServerApp.root_dir = ""
# 密码
c.ServerApp.password = ""
# 远程api
c.ServerApp.allow_origin = '*'
# 生成密码的方法
ipython
from notebook.auth import passwd
passwd()
评论区