mac上使用anaconda中的jupyterlab。
修改默认的工作目录
upyter lab --generate-config
Writing default config to: /Users/xxx/.jupyter/jupyter_lab_config.py
vim /Users/xiece/.jupyter/jupyter_lab_config.py
# 设置c.ServerApp.notebook_dir
c.ServerApp.notebook_dir= '/Users/xxx/jupyternotes'
修改后重启anaconda再重启juypterlab工作目录也还是没改,命令行直接运行jupyte lab,发现报错是因为没有找到文件夹/Users/xxx/jupyternotes,
建好目录以后,重启jupyter lab,发现工作目录设置成功,日志如下:
[I 2024-07-03 21:32:20.497 ServerApp] notebooks 运行所在的本地路径: /Users/xxx/jupyternotes
注意给文件夹授权
chmod 777 /Users/xxx/jupyternotes/
然后运行:
sudo jupyter notebook --allow-root