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

Unable to import node_module packages in Jupyter notebook extension

I'm trying to import an external javascript module (e.g., log4js). However, I have issues with loading in javascript packages specified in my package.json into my Jupyter extension. My project setup looks something like this: ├── logger/ │ └──…
0
votes
1 answer

How to Print Table of Contents and Paragraph Numbers

With nbextensions I get notebooks to have an index table and paragraph numbering. The problem is that when I print or export, in both cases, the index disappear. Is it possible to do it with nbextensions? Is there any way to get they don't…
0
votes
0 answers

No nbextensions are shown in Jupyter

I did a fresh install of Jupyter Notebook today. It is working as it should be. After that I tried installing nbextensions but I run into problems when tying to execute: jupyter contrib nbextension install --user I Get the following…
0
votes
1 answer

Why is Jupyter Notebook taking so long to load?

Seemingly out of nowhere, one of my Jupyter Notebook .ipynb files now takes forever to open, to the point where I receive Chrome notifications saying that the page is unresponsive. If I wait it out it does open, however. Once it does open, though,…
0
votes
1 answer

Multiple Markdown translations per cell on jupyter notebooks

Is there a native way or widget on jupyter notebooks to set a markdown cell to create something like html tabs so I can add documentation on each language I want instead of creating 3 different notebooks that will add complexity in the…
0
votes
1 answer

How to create JupyterHub extension using request handler for creating a notebook with the content of the notebook in the url parameter?

I would like to create a Jupiter notebook extension with a custom request handler. My goal is to have a link, like localhost:8888/NotebookCreatorExtension?data={"cells": [...], ...}, and jupyterhub would create a notebook in the user's root…
0
votes
1 answer

Jupyter Extension Installation Failed: Error says 'terminado' wasn't found, but I should already have it

I've tried to install jupyter extensions following the instruction here. The first step named 'Install the python package' in the instruction was succeeded. But the second one named 'Install javascript and css files' was failed. I executed jupyter…
0
votes
1 answer

How to pass a parameter from the Jupyter backend to a frontend extension

I currently have a value that is stored as an environment variable the environment where a jupyter server is running. I would like to somehow pass that value to a frontend extension. It does not have to read the environment variable in real time, I…
Narek
  • 548
  • 6
  • 26
0
votes
1 answer

Install Jupyter Notebook extensions on copy hosted on cloned Github Repository?

I have a cloned Jupyter Notebook hosted on Github. Locally, I have installed Jupyter Notebook extensions but these are not maintained within the Github environment. Is there a way to install the extensions on the Github server so that cells can be…
0
votes
0 answers

jupyter_contrib_nbextensions tab not showing for large notebooks

I just installed jupyter_contrib_nbextensions. However, I could see the navigator tab on only on the small notebooks. Large notebook files do not contain the tab. It is not in the edit tab either. Would anyone be able to help me on this issue.…
0
votes
1 answer

How to get user details of Azure Notebook using extension?

I am trying to write an extension for the Azure notebook which will allow the user to submit their questions to my backend application(written in Flask). So far my extension's javascript is able to get the .ipynb file details and cell number and…
0
votes
1 answer

How to install variable explorer extension in jupyter notebook

I am running jupyter notebook through Anaconda Navigator. I tried installing variable explorer extension, Although I was successful in installing the extension but I am not able to install its java and css dependencies ! pip install…
Ahamed Moosa
  • 1,395
  • 7
  • 16
  • 30
0
votes
1 answer

jupyter extensions: ipycache: How to clear cache

Jupyter extensions is a set of extensions to Jupyter Notebook that allow for all sorts of customizations. ipycache allows caching the contents of computed cells to save computation time as in this example. Is there a way to explicitly invalidate…
ntg
  • 12,950
  • 7
  • 74
  • 95
-2
votes
1 answer

How can I import two or more packages in jupyter notebook?

I want to import the following packages with snippets in jupyter notebook: import numpy as np import pandas as pd import matplotlib.pyplot as plt import seaborn as sns import yfinance as yf I tried to add my sub_menu in snippets, but I…
1 2 3 4
5