Ubuntu22.04 Jupyter Lab 设置工作目录为jupyter lab命令启动时所在目录

  1. 找到.jupyter/lab/workspaces/目录
  2. 删除其中的default-xxx-workspace文件
  3. 找到.jupyter/jupyter_lab_config.py文件(无此文件可用jupyter notebook --generate-config 命令生成)。
  4. vim jupyter_lab_config.py,找到c.ServerApp.root_dir,取消注释,将其改为:
import os
c.ServerApp.root_dir = os.getcwd()

重启 jupyter lab即可。

你可能感兴趣的:(jupyter,python)