Adding nbextensions to Jupyter notebook

Jicksy John
2 min readJul 9, 2018

There are the two issues I faced while working with Jupyter notebook. By default, Jupyer notebooks don’t have ‘Table of Contents’ or ‘Collapsible Headings’ enabled.

Steps for adding extensions to your Jupyter notebook:

  1. To run on terminal (If you are using with pip please refer to this link for detailed steps: https://github.com/Jupyter-contrib/jupyter_nbextensions_configurator).

$ source ~/anaconda3/bin/activate root
$ conda install -c conda-forge jupyter_nbextensions_configurator
$ jupyter…

--

--