おすすめのJupyter拡張機能
(前提) JupyterLabがインストール済みであること
- JupyterLabのインストール
$ pip3 install --upgrade --no-cache-dir 'jupyterlab~=3.0'
おすすめのJupyter拡張機能
- JupyterLabのテーマ(背景デザイン)
-
Monokai++
-
インストール方法
$ jupyter labextension install @hokyjack/jupyterlab-monokai-plus
-
- 目次(Table of contents)
-
toc
-
インストール方法
$ jupyter labextension install @jupyterlab/toc
-
- コード自動整形(black)
-
jupyterlab_code_formatter
-
インストール方法
$ pip3 install --upgrade --no-cache-dir jupyterlab_code_formatter $ pip3 install --upgrade --no-cache-dir black $ pip3 install --upgrade --no-cache-dir isort $ jupyter labextension install @ryantam626/jupyterlab_code_formatter $ jupyter serverextension enable --py jupyterlab_code_formatter
-