Reputation: 5071
I have installed jupyter_contrib_nbextensions using conda, i.e.: conda install -c conda-forge jupyter_nbextensions_configurator
This is what I see:
I don't see extensions I expected to see like toc2
extension.
In fact, I am trying to configure my JupyterLab Notebook to provide the following functionalities:
When I select the functionalities of interest the button "enable" is dimmed.
This is how my JupterLab appears:
What I am missing?
Upvotes: 3
Views: 5091
Reputation: 63
Instead of using nbextensions you can use 2 @jupterlab extensions that will have the result that you want. To install the jupyterlab extensions first you will need to Enable Extensions Manager by checking this option on the settings menu.
Then, you need to click on the Extension Manager icon in the left side (as indicated on the figure bellow), agree with the disclaimer and then clikck in the install link after the extension name.
The extensions that make what you need are:
Upvotes: 1
Reputation: 1967
Just in case someone else is looking for this, the nbextensions won't work in JupyterLab. From jupyter-contrib-nbextensions documentation as of 8/31/2021:
Most nbextensions here should work fine with jupyterhub (because jupyterhub spawns regular notebook servers for each individual user), but won’t work with jupyterlab (because the jupyterlab javascript framework is different to notebook’s, and still rapidly changing under active development).
There are extensions available within JupyterLab, and of course, a framework for creating your own extensions.
Upvotes: 8