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
43
votes
1 answer

All jupyter contrib nbextensions are marked as possibly incompatible

I have just installed jupyter_contrib_nbextensions by: pip install jupyter_contrib_nbextensions jupyter contrib nbextension install --user When I open a jupyter notebook and navigate to Edit -> nbextensions config, I see the below screen: All…
pgmank
  • 5,303
  • 5
  • 36
  • 52
6
votes
2 answers

ModuleNotFoundError: No module named 'notebook.base' when installing nbextensions

For the 1000th time, I am trying to install the nbextensions for my Jupyter Notebook and every time I get the error ModuleNotFoundError: No module named ‘notebook.base’. I did everything according to the instructions; in Windows 11 cmd: installed…
6
votes
2 answers

jupyter nbconvert --to html_toc not working (convert jupyter notebook with table of content to website format)

What I wanted With the nbextension toc, jupyter notebooks have table of content capabilities which is said to be transferable to html via nbconvert --to html_toc function, or via the dropdown menue "download as html with toc". However, neither…
le8rning
  • 145
  • 2
  • 6
6
votes
2 answers

Jupyter Configurable nbextensions list is empty

I installed conda install -c conda-forge jupyter_nbextensions_configurator and ran jupyter nbextensions_configurator enable --user in my venv, but the nbextensions menu is empty. I've restarted notebook a few times, no luck. How can I get the menu…
a11
  • 3,122
  • 4
  • 27
  • 66
6
votes
0 answers

How to include extra javascript library to be used by my custom jupyter notebook extension?

I would like to write a Jupyter Notebook Extension as described here: https://towardsdatascience.com/how-to-write-a-jupyter-notebook-extension-a63f9578a38c Jupyter notebook seems to come with a default set of JavaScript libraries (e.g. jquery,…
Stefan
  • 10,010
  • 7
  • 61
  • 117
6
votes
7 answers

Table of Contents disappeared in Jupyter Notebook

Currently, a jupyter notebook does not show the lateral table of contents. All the other notebooks do. In fact, for that notebook under menu->edit the nbextensions config disappeared, so, it looks like that notebook does not load the extension. My…
sono
  • 266
  • 2
  • 7
  • 18
6
votes
1 answer

Using python variable within Jupyter LaTeX Markdown Cell

I would like to fill in values in a report that I'm generating using a Jupyter notebook. While I am using the nbextension Python Markdown, this appears to only allow variables that can isolated, i.e. I can't fill in values that would be in a…
5
votes
2 answers

Export to HTML of Jupyter notebook with table of contents does not embed plots

I have build a notebook for visualization purposes. First, I have exported it to html using the command line interface of nbconvert: jupyter nbconvert myNotebook.ipynb --no-input Adding the --no-input flag to hide input cells The output consists of…
4
votes
1 answer

How to auto-update jupyter notebook extension during development/debugging?

I try to write a custom extension for the Jupyter Notebook, as described here: https://towardsdatascience.com/how-to-write-a-jupyter-notebook-extension-a63f9578a38c I use the Chrome developer tools on Windows7 to inspect and edit the Javascript…
Stefan
  • 10,010
  • 7
  • 61
  • 117
4
votes
2 answers

display pandas dataframe into another tab

I am trying to display my pandas dataframe in another "Output View" tab as shown in this iamge... https://github.com/quantopian/qgrid/blob/master/docs/images/events_api.gif I am able to install and try the basic features of qgrid using following…
shantanuo
  • 31,689
  • 78
  • 245
  • 403
4
votes
3 answers

How to add/edit code snippets in jupyer notebook?

I tried to follow the instructions given in the README file of the extension. Im using Windows and to open my notebooks I use the jupyter-notebook.exe stored in the directory ..\Anaconda3\Scripts Within the Anaconda3 directory I go to the…
3
votes
0 answers

Inline Python Markdown is not computed when exporting from notebook to html

I'm using the Python Markdown extension in my Jupyter notebooks, that so far works great in a live notebook: However when I'm trying to export it as html (I'm using the GUI for this: File > Download as > HTML (.html)), the inline code is no longer…
3
votes
1 answer

Duplicate versions of nbextensions - how to know which one to delete

I want to install nbextensions for my juypter notebooks. Having followed the instructions from here, I can see the nbextensions dashboard. However when I go to enable this I get the following error: "This nbextension's require url…
3
votes
5 answers

Fix jupyter notebook toolbar with jupyterthemes and table of contents

I'm running a jupyter notebook after having changed the theme this way !jt -t oceans16 -T -N -kl Now the toolbar appears but it overlaps with the code and table of contents. If I scroll down the notebook it keeps hiding the first cells and the…
Ale
  • 917
  • 9
  • 28
3
votes
0 answers

Rmagics and Rpy2 broken on Windows 10. All computational results go out to Windows Console not Jupyter output cells. RWinOut hack no longer works

Rmagics and Rpy2 broken on Windows 10. All computational results go out to Windows Console not Jupyter output cells. The RWinOut hack no longer works. As soon as I use RWinout, I get a fatal error that requires me to restart Jupyter NB server, it…
1
2 3 4 5