Users can install the current version of ipywidgets with pip or conda.
pip install ipywidgets
jupyter nbextension enable --py widgetsnbextension
When using virtualenv and working in
an activated virtual environment, the --sys-prefix
option may be required
to enable the extension and keep the environment isolated (i.e.
jupyter nbextension enable --py widgetsnbextension --sys-prefix
).
conda install -c conda-forge ipywidgets
Installing ipywidgets with conda will also enable the extension for you.
Sometimes the Jupyter Notebook and the IPython kernel are installed in different environments (either virtualenv or conda environments). This happens when environments are used to provide different IPython kernels. In this case, the installation requires two steps.
First, you need to install the widgetsnbextension
package in the environment
containing the Jupyter Notebook server. Next, you need to install
ipywidgets
in each kernel's environment that will use ipywidgets.
For example, if using conda environments, with the notebook installed on the
base
environment and the kernel installed in an environment called py36
,
the commands are:
conda install -n base -c conda-forge widgetsnbextension
conda install -n py36 -c conda-forge ipywidgets
To install the JupyterLab extension you also need to run the command below in a terminal which requires that you have nodejs installed.
jupyter labextension install @jupyter-widgets/jupyterlab-manager
Note: A clean reinstall of the JupyterLab extension can be done by first
running the jupyter lab clean
command which will remove the staging and
static directories from the lab directory. The location of the lab directory
can be queried by executing the command jupyter lab path
in your terminal.