生成配置文件
jupyter-lab --generate-config
设置密码
# 会写入到另一个配置文件
jupyter-lab password
安装插件
# node 环境
conda install nodejs
# 自动补全
pip install jupyterlab-kite
将Test
环境写入 jupyterlab
# 下方操作都是在Test环境下
pip install ipykernel
python -m ipykernel install --user --name Test --display-name "你想显示的名字"
设置远程访问
打开~/.jupyter/jupyter_lab_config.py
文件
直接复制粘贴下面的内容就行
c.ServerApp.ip = '*'
c.ServerApp.allow_remote_access = True
c.ServerApp.port = 8888
其他
问题记录:jupyter 中 tab 补齐报错
最后于 2022-9-4
被admin编辑
,原因: