Questions tagged [jupyter-contrib-nbextensions]

The jupyter_contrib_nbextensions package contains a collection of community-contributed unofficial extensions that add functionality to the Jupyter notebook. These extensions are loaded locally in the browser and provide added functionality such as highliting, code/header folding, automatic code manipulation, enhanced result/code presentation, etc.

The jupyter_contrib_nbextensions package contains a collection of community-contributed unofficial extensions that add functionality to the Jupyter notebook. These extensions are loaded locally in the browser and provide added functionality such as highliting, code/header folding, automatic code manipulation, enhanced result/code presentation, etc.

From the project's git page:

For Jupyter version 4 or 5, use the master branch of the repository. Most nbextensions have been updated to work with both Jupyter 4.x and 5.x

Example screen: enter image description here

74 questions
3
votes
1 answer

How to handle Jupyter Notebook NBextension config error?

I installed nbextension to my Jupyter Notebook. But when I was using large datasets it made a big slow down. Then I removed NBExtension but after uninstallation, 500 Internal Server error started. Now I tried to reinstall Anaconda but the problem is…
3
votes
2 answers

Jupyter notebook: Is there a way to fold sections while exporting to html

I am using Jupyter notebooks with jupyter-contrib-nbextensions and I can fold sections as well as code blocks in them. I want to know if there is a way to preserve the folding feature when the notebook is exported to html. Currently when I export…
2
votes
1 answer

Jupyter Notebook nbextension Table of Contents (2) hidden behind top panel

I'm using Jupyter Notebook nbextension Table of Contents (2). Part of the contents are hidden behind the top panel. How do I config it to make it display properly? I tried from IPython.core.display import display,…
2
votes
1 answer

Jupyter Notebook, missing toolbar with nbextensions

I'm using Ubuntu 20.04 and working in a virtual environment set up with pipenv. (Python version is 3.8) I like Jupyter Notebook and decided to install the package nbextensions. Installation finished without errors, I can activate a particular…
2
votes
2 answers

Jupyter nbextensions doesn´t appear - 404 GET /static/components/marked/lib/marked.js

Steps done After introduce the next commands. conda create -n dsenv python=3.10 conda activate dsenv pip install jupyter pip install jupyter-contrib-nbextensions==0.5.1 jupyter contrib nbextension install --user Everything went well. But when i…
2
votes
0 answers

"Nbextensions" tab not showing in jupyterhub

can anyone explain how to fix or troubleshoot this issue ? How i understand i already install packages and enable all modules. There are no any issue(at least i can't see any) with requirements or versions. But after login in jupyterhub, the…
2
votes
2 answers

jupyter contrib nbextension install gives Jupyter command `jupyter-contrib` not found

Trying to (re)install Jupyter's nbextension via the following steps in terminal pip install jupyter_contrib_nbextensions jupyter contrib nbextension install --user install --user jupyter nbextension enable varInspector/main Step 1 = runs and i am…
2
votes
0 answers

Find and go-to text when using nbextensions which hide code

This is a duplicate from this 3-year-old question, which does not have a satisfactory solution. The question is about finding and going to text across all cells of a Jupyter Notebook when using nbextensions such as Collapsible Headings or…
Luismi98
  • 282
  • 3
  • 14
2
votes
0 answers

Cannot install jupyter notebook extensions

I have already installed Anaconda3-2021.11 on my Linux server (which has no Internet connection). I'm trying to install the Jupyter Notebook nbextensions so as to use the Table of Contents extension. However, I'm unable to install it using conda…
Rayne
  • 14,247
  • 16
  • 42
  • 59
2
votes
0 answers

Jupyter Notebook TOC not showing up

I created a new environment in Anaconda, and I cannot get Jupyter Notebooks TOC to work. I tried the answers in a similar question at Jupyter Configurable nbextensions list is empty. I initially created my new env in Anaconda prompt like this: conda…
a11
  • 3,122
  • 4
  • 27
  • 66
2
votes
0 answers

Incomplete nbextensions in jupyter notebook (only 5 extensions are showing)

Tried to invoke in the anaconda command prompt conda install -c conda-forge jupyter_contrib_nbextensions But got this issue: This nbextension is enabled in the notebook json config, but doesn't provide a yaml file to tell us how to configure it. You…
2
votes
1 answer

jupyter nbextensions not available after installation

I have recently uninstalled anaconda (individual edition), now I have installed it again. I have also installed the nbextensions from here, using the command conda install -c conda-forge jupyter_contrib_nbextensions. This should install all the…
2
votes
0 answers

jupyter nbextension: Install javascript and css files failed

I tried to install the javascript and the css files to finalise my jupyter notebook nbextension installation process as is written here. When I enter the command jupyter contrib nbextension install --sys-prefix in my jupyter notebook was started…
2
votes
3 answers

Activating jupyter_contrib_nbextensions in JupyterLab

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…
user8270077
  • 4,621
  • 17
  • 75
  • 140
2
votes
0 answers

jupyter notebooks problem loading nbextensions

I have installed Anaconda3 5.0.1 for windows. Afterwards, I installed nbextensions for Jupyter notebook. I have used following code in Anaconda Prompt for nbextension installation: pip install jupyter_contrib_nbextensions jupyter-contrib nbextension…