Jupyter Nbextensions Configurator

0.6.4 · active · verified Mon Apr 13

Jupyter Nbextensions Configurator is a Jupyter server extension that provides graphical user interfaces for configuring notebook extensions (nbextensions). It allows users to enable or disable nbextensions and, for those with appropriate YAML descriptor files, to configure their specific options and view their README documentation. The library is currently at version 0.6.4 and is actively maintained with periodic releases addressing compatibility and bug fixes.

Warnings

Install

Quickstart

Install the `jupyter_nbextensions_configurator` package, then enable its server extension. After restarting your Jupyter Notebook server, a new 'Nbextensions' tab will appear on the Jupyter home page (file browser), allowing you to manage and configure all detected notebook extensions.

# 1. Install the configurator (if not already installed)
pip install jupyter_nbextensions_configurator

# 2. Enable the server extension for the current user
jupyter nbextensions_configurator enable --user

# 3. Start Jupyter Notebook
jupyter notebook

# After starting Jupyter, open your web browser to the Jupyter home page.
# You should see a new 'Nbextensions' tab. Click it to manage and configure
# your installed notebook extensions.

view raw JSON →