ipython-contrib / jupyter_contrib_nbextensions

A collection of various notebook extensions for Jupyter
http://jupyter-contrib-nbextensions.readthedocs.io/en/latest
Other
5.2k stars 805 forks source link

Only 3 extensions available after installing #1564

Closed ricardojumia closed 3 years ago

ricardojumia commented 3 years ago

I just installed jupyter_contrib_nbextensions in a new conda installation and there are only three extensions available.

image

Steps I've taken to try to solve this issue:

Any help would be greatly appreciated.

ObliviousMonkey commented 3 years ago

Had the same problem and found this SO post that solved it for me (except for the first line, as I installed through Conda):

Follow 3 steps: In Terminal

pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install --user
jupyter nbextension enable varInspector/main

after this you will see "Vaildating: ok" Now you can open jupyter notebook you will see the require changes

Before doing this, I also downgraded notebook to version 5.7.8 as most of the extensions are not compatible with 6.x (conda install notebook==5.7.8)

ricardojumia commented 3 years ago

Worked like a charm. Thank you!

batprem commented 5 months ago

Thanks @ObliviousMonkey !!! that helps me a lot