JupyterLab安装方法
安装方法:
pip install jupyterlab
创建配置文件:
jupyter lab --generate-config
修改jupyter工作路径:
打开配置文件(使用文本编辑器打开),修改以下配置:
修改前:
# c.ServerApp.notebook_dir = ''
修改后:
c.ServerApp.notebook_dir = '<jupyter工作路径>'
# 例如:c.ServerApp.notebook_dir = 'C:\Python\Python_project\Jupyter'
运行jupyter lab
CMD命令行中输入jupyter lab命令,然后默认浏览器就会打开jupyter lab。
jupyter lab