JupyterLab 常用配置

司徒寒
2023-12-01

JupyterLab 远程访问配置

安装

pip install jupyterlab

1.初始化并生成配置文件

jupyter lab --generate-config

系统会生成/root/.jupyter/jupyter_lab_config.py文件。

2.生成密码

ipython
from jupyter_server.auth import passwd
passwd()

输入两次密码,会生成一串加密字符。请复制并保存这串字符。

exit()

退出ipython模式

3.修改配置文件

c.ServerApp.allow_remote_access = True  #远程访问
c.ServerApp.allow_root = True  #使用root运行
c.ServerApp.ip = '*'  #监听地址
c.ServerApp.port = 80  #端口,默认8888
c.ServerApp.password = 'sha1:刚刚你获得字符串'  #密码
c.ServerApp.open_browser = False  #不打开浏览器

JupyterLab 安装简体中文语言包

pip install jupyterlab-language-pack-zh-CN
 类似资料: