Jupyterlab Efficiency Tools - TOC Table of Content

Table of contents is an efficient way to organize your notebook but it does not come automatically with JupyterLab. How can we install it?


Pre-requisites

In order to install JupyterLab extensions, you first need to have Node.js version 4 or later installed.

If you use conda, you can get it with:


In [0]:
conda install -c conda-forge nodejs

If you use Homebrew on Mac OS X:


In [0]:
brew install node

I tried PIP install - that is ok too


In [0]:
pip install nodejs

You can also download Node.js from the Node.js website and install it directly.

TOC extension installation


In [0]:
jupyter labextension install @jupyterlab/toc

Done! Wasn't it easy!