侧边栏壁纸
  • 累计撰写 81 篇文章
  • 累计创建 50 个标签
  • 累计收到 0 条评论

目 录CONTENT

文章目录

jupyterlab操作

shawn
2023-09-02 / 0 评论 / 0 点赞 / 3 阅读 / 1103 字

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()
0

评论区