Ubuntu Server 安装 JupyterLab

本文最后更新于:2021-11-16 20:23

JupyterLab 是 Jupyter 项目的下一代基于Web的用户界面,根据官方文档,JupyterLab 最终将取代经典的 Jupyter Notebook

下面我们看一下如何在 Ubuntu Server 20.04 下安装 JupypterLab 吧

准备工作

安装最新版 Python3、pip3 及 nodejs,用 Anaconda 也可以

安装JupyterLab

1
2
3
pip3 install jupyterlab
# 或者使用
# conda install -c conda-forge jupyterlab

配置Python

生成配置文件

1
2
jupyter lab --generate-config

生成密码

输入

1
jupyter lab password

然后输入两次设定的密码即可

修改配置

1
vi ~/.jupyter/jupyter_notebook_config.py

并找到以下条目并修改:

1
2
3
4
5
6
7
8
# 允许远程访问
c.ServerApp.allow_remote_access = True
# 允许 root 用户
c.ServerApp.allow_root = True
# 启动时不打开浏览器
c.LabServerApp.open_browser = False
# 设置公网访问
c.ServerApp.ip = '0.0.0.0'

安装中文语言包

1
pip3 install jupyterlab-language-pack-zh-CN

然后在 settingslanguage 中切换

debugger 语法检测

jupyter-lab 3.0 默认带有 debugger,所以不需要额外安装,但缺少依赖包,需要安装:

1
2
3
pip install xeus-python
# 或
# conda install -c conda-forge xeus-python

代码提示

1
2
3
pip install jupyterlab-lsp
# 或者
# conda install -c conda-forge jupyterlab-lsp
1
pip install python-lsp-server[all]

启动Jupyter Notebook

1
jupyter lab

打开相应端口即可通过ip:端口访问JupyterLab,默认端口为 8888

插件(可选)

@jupyterlab/toc
@krassowski/jupyterlab_go_to_definition
@ryantam626/jupyterlab_sublime

参考文献

Jupyter-lab 3.0 安装、配置并选择虚拟环境开机启动


Ubuntu Server 安装 JupyterLab
https://peppernotes.top/2020/06/ubuntujupyterlab/
作者
辣椒小皇纸
发布于
2020年6月28日
许可协议