首页>> >> 文章内容
JupyterLab,极其强大的下一代notebook![十方僧]

2022-01-01 10:15:05

pip install jupyterlab
conda install -c conda-forge jupyterlab
jupyter lab #启动 jupyter
jupyter lab –allow-root # root 用户下启用jupyter

设置Jupyterlab保存目录和端口
jupyter lab –generate-config

Jupyter Lab 插件安装
# 安装一个生成目录的插件
jupyter labextension install @jupyterlab/toc
# 可以查看一下安装的插件
jupyter labextension list

c.ServerApp.ip = ‘*’
c.ServerApp.allow_remote_access = True #允许远程访问
c.ServerApp.notebook_dir = ‘/home/project/jupyter’
c.ExtensionApp.open_browser = False #不用浏览器打开
c.ServerApp.port = 2090