Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

To install jupyter nbextensions in jupyter notebooks 6.X.X, follow these steps:

  1. Open a terminal window.
  2. Create a new conda environment and activate it:
conda create -n myenv python=3.8
conda activate myenv
  1. Install Jupyter Notebook:
conda install jupyter
  1. Install jupyternbextensionsconfigurator:
conda install -c conda-forge jupyter_nbextensions_configurator
  1. Install nbextensions:
conda install -c conda-forge jupyter_contrib_nbextensions
  1. Enable nbextensions:
jupyter nbextensions_configurator enable --user
  1. Start Jupyter Notebook:
jupyter notebook
  1. Open a new notebook and go to the Nbextensions tab. From here, you can enable/disable nbextensions as needed.