LoginSignup
34
23

More than 3 years have passed since last update.

Jupyter Notebookの拡張機能、nbextensionsの設定について 自分用

Posted at

タイトル通り、nbextensionsの個人的の設定について。

導入

参考にしたサイト
https://www.pynote.info/entry/jupyter-notebook-nbextensions

#インストール
pip install jupyter-contrib-nbextensions
(pip install jupyter-nbextensions-configurator) #上記の時点であるっぽい?

#有効化
jupyter contrib nbextension install --user
jupyter nbextensions_configurator enable --user

アンインストール、無効化したい場合は以下の通り。
参考にしたサイト
https://github.com/ipython-contrib/jupyter_contrib_nbextensions/issues/1012

#無効化
jupyter contrib nbextension uninstall --user
jupyter nbextensions_configurator disable --user

#アンインストール
pip uninstall jupyter-contrib-nbextensions
pip uninstall jupyter-nbextensions-configurator

nbextensionsの設定

参考にしたサイト
https://qiita.com/simonritchie/items/88161c806197a0b84174

nbextensionsの設定.PNG

34
23
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
34
23