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
2
votes
0 answers

Python-Markdown in Voila

I would like to render the nbextension python-markdown in voila. Currently a = 1.23 in a jupyter-code cell and a is {{a}} in a jupyter-markdown cell is rendered when executing in jupyter-notebook, but not in voila. Do I need here additional…
Max
  • 93
  • 6
2
votes
1 answer

Manging python packages on Mac OS

I am on Mac using macports to install python3. I decided to follow macports path instead of direct Python3 download/install to keep it separate from Apple's native Python installs. I went with Python36 since it was compatible with a recently added…
2
votes
0 answers

Make Jupyter extensions options persist

I have done some Google research, but I did not find satisfactory answer for a question below. I have my own docker environment based on jupyter/datascience-notebook image. I use some Jupyter extensions that are enabled by default when launching a…
2
votes
1 answer

Variable Inspector (from nb extensions) doesn't work in Jupyter Notebook 5.6.0

I'm working with Jupyter Notebook 5.6.0 and I would like to use the Variable Inspector from the nb-extensions. It's the newest version 0.5.0, I just installed it. No matter if I enable the Variable Inspector via Anaconda Prompt or the Extensions…
1
vote
0 answers

Error Loading Extensions in Jupyter Notebook

I have installed jupyter notebook nbextensions in my environment. When i am trying to enable some features in the extensions tab. i am getting the error like these for all the extensions avaiable- [jupyter_nbextensions_configurator] error loading…
1
vote
0 answers

How to correct loading errors of nbextensions in jupyter after conda updates?

Recently, I update my personal conda environment for Python and during the process updated conda package, but that started a series of problems that bring me to a series of uninstall and install packages, at the end I lost access to most of the…
1
vote
1 answer

Jupyter Notebook Extension: Snippets menu is not working after enabling nbextensions

After I have installed nbextensions, I have enabled a few extensions such as Hinterland, Snippets, and Snippets Menu. The other extensions are working pretty fine, except for Snippets Menu. I am not sure why the snippet menu tab is not showing, in…
1
vote
1 answer

How can I add a tab next to "Files" "Running" "Clusters" in the jupyter notebook dashboard?

I would like to add a new tab next to the existing tabs in jupyter notebook. I did a lot of research and I always come back to nbextensions. However, those extensions provide changes within a notebook. I wrote code (in PyCharm) that does some…
1
vote
0 answers

Codefolding in Jupiter notebook text editor

Is there a way to get code folding in Jupiter notebook text editor (not the ipynb editor) e.g., you can use the text editor to edit raw python files: and I'd like to be able to collapse functions and such (just like in the ipynb editor with the…
QCD_IS_GOOD
  • 435
  • 7
  • 22
1
vote
1 answer

Nbextension not displaying full list

I am setting up the nbextensions on a new desktop. My previous one on the old desktop (pic1) has a lot more extensions then this new one (pic2). Tried to search from the filter, won't display either. Anyone have a clue of what's going on here? I…
1
vote
1 answer

Cannot see most extensions in Nbextensions tab in jupyter notebook

I installed Nbextensions using conda install -c conda-forge jupyter_contrib_nbextensions The installation was fine and I can also see Nbextensions tab on my jupyter notebook. However I see only a few extensions, the ones in image below missing…
1
vote
2 answers

jupyter contrib nbextension install --user fails

On a conda installation installed via -c conda-forge, trying to install nbextensions via jupyter contrib nbextension install --user Results in usage: jupyter-contrib [-h] [--debug] [--generate-config] [-y] [--log-level…
1
vote
0 answers

"jupyter labextension enable" don't find extension

when I try to install an extension like hinterland, it don't find the extension FROM jupyter/datascience-notebook:latest RUN conda install --yes jupyter_nbextensions_configurator RUN conda install --yes jupyter_contrib_nbextensions RUN jupyter…
1
vote
1 answer

Some setting changes in Table of Contents 2 (toc2) in nbextensions not showing up in Jupyter notebook I had open at the time of installation

I recently installed nbextensions in my conda environment to add the ability to add a Table of Contents (toc2) to my notebooks. But I did this while having a jupyter notebook open and after installing the extension, changes in the extension settings…
1
vote
0 answers

Custom nbextension's files not exposed on JupyterHub

I created a custom extension for Jupyter Notebook with pretty advanced GUI written in React. This is how the files are structured: When I install and enable the extension for a local Jupyter Notebook, all those files are exposed on the localhost…
MrLoon
  • 831
  • 1
  • 8
  • 16