LoginSignup
1
1

More than 1 year has passed since last update.

おすすめのJupyter拡張機能

Posted at

おすすめのJupyter拡張機能

(前提) JupyterLabがインストール済みであること

  • JupyterLabのインストール
$ pip3 install --upgrade --no-cache-dir 'jupyterlab~=3.0'

おすすめのJupyter拡張機能

  • JupyterLabのテーマ(背景デザイン)

    • Monokai++
    • インストール方法
      $ jupyter labextension install @hokyjack/jupyterlab-monokai-plus
    

    スクリーンショット 2021-11-17 8.15.58.png

  • 目次(Table of contents)

    • toc
    • インストール方法
      $ jupyter labextension install @jupyterlab/toc
    

    スクリーンショット 2021-11-17 8.19.46.png

  • コード自動整形(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
    

    jupyterlab_code_formatter.gif

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1