As the title suggests, about the personal settings of nbextensions.
Referenced site https://www.pynote.info/entry/jupyter-notebook-nbextensions
#Installation
pip install jupyter-contrib-nbextensions
(pip install jupyter-nbextensions-configurator) #Does it look like the above point?
#activation
jupyter contrib nbextension install --user
jupyter nbextensions_configurator enable --user
If you want to uninstall or disable it, follow the steps below. Referenced site https://github.com/ipython-contrib/jupyter_contrib_nbextensions/issues/1012
#Invalidation
jupyter contrib nbextension uninstall --user
jupyter nbextensions_configurator disable --user
#Uninstall
pip uninstall jupyter-contrib-nbextensions
pip uninstall jupyter-nbextensions-configurator
Referenced site https://qiita.com/simonritchie/items/88161c806197a0b84174
Recommended Posts