安装步骤 1(安装插件本身)
pip安装
pip install jupyterlab_code_formatter
conda安装
conda install -c conda-forge jupyterlab_code_formatter
如果你的jupyter lab版本小于3.0.0 还需要执行以下代码
jupyter serverextension enable --py jupyterlab_code_formatter
jupyter labextension install @ryantam626/jupyterlab_code_formatter
安装步骤 2 安装支持的代码格式化程序
pip install autopep8 isort
或者
conda install autopep8 isort