Questions tagged [jupyter]

Jupyter is a collection of environments and protocols for interactive computing. It supports many languages and kernels, and works with frontends including the web application Jupyter Notebook. Jupyter was split from IPython in 2015, and Jupyter Notebook is based on IPython Notebook.

Jupyter is the home of language-agnostic projects that began as part of IPython, such as the IPython Notebook.

Jupyter was split from IPython starting with IPython 4.0 (released August 11, 2015). The parts of IPython which work for any language are now called Jupyter, while the parts specific to executing Python code remain as IPython.

Jupyter projects include:

  • JupyterLab is the next-generation web-based user interface for Project Jupyter
  • Jupyter Notebook (based on IPython notebook)
  • qtconsole
  • Jupyter protocol
  • JupyterHub (multi-user server)
  • See Jupyter Documentation for a comprehensive list of links to each of the repositories for the Jupyter project.

See also

7885 questions
3
votes
1 answer

How to indent jupyter cells/blocks in vs code

I want to use vscode and jupyter for interactive python programming. Everything works find except that cells/blocks are only recognized when they are not indent or if the code is not indented. Previously, I used spyder where this is possible. I like…
hstorm
  • 31
  • 4
3
votes
1 answer

jupyter nbconvert --to notebook not excluding raw cells

I'm trying to export notebooks from a ./doc folder to a `./notebook/ folder in the root of my project, but remove all the raw cells where I have rst. I tried the following: jupyter nbconvert --to notebook $< --output=$@…
NickleDave
  • 372
  • 2
  • 18
3
votes
1 answer

How to make jupyter HTML-matplotlib animation with seaborn heatmap?

I trying to make HTML(anim.to_html5_video) animation work in jupyter with seaborn heatmap. First, I get working working samples from documentation, and make "pure matplotlib" image map animated example, it worked, with small problem ("parasite…
belonesox
  • 121
  • 1
  • 7
3
votes
1 answer

Input functionality is not working with python in Vscode

Description: I'm using Vscode Studio for python coding, I've installed every extension related to python and I wanna use Jupyter. I'm experiencing no problem with importing packages or running code but when I try to grab the input from the user it…
Shaz
  • 181
  • 2
  • 5
3
votes
1 answer

IPython in Jupyter notebook: recall previous command

In the Unix shell, you press up-arrow to recall previous command. With Jupyter, so far I could only hack to achieve this behaviour with copy-and-paste through C and Shift-V shortcut, or go into previous cell and run it again, which is cumbersome.…
kakyo
  • 10,460
  • 14
  • 76
  • 140
3
votes
1 answer

Is it possible to use jupyter_contrib_nbextensions in nbviewer?

Is it possible to use jupyter_contrib_nbextensions extension like "Collapsible Headings" in nbviewer? I've managed to use it locally by doing the following steps: # Install Jupyterextension package pip install jupyter_contrib_nbextensions jupyter…
Oleksii Trekhleb
  • 2,543
  • 20
  • 22
3
votes
1 answer

Connect jupyter python by tunneled connection (via ssh)

I have a problem with connecting to jupyter that I run on remote computer. I have configured jupyter with ssl as in the following doc: https://jupyter-notebook.readthedocs.io/en/latest/public_server.html#hashed-pw Then I run jupyter on remote…
Marek Justyna
  • 214
  • 3
  • 15
3
votes
1 answer

Updating tests to grade an assignment after students have submitted it in nbgrader

I have already released an assignment and gotten the homework submissions. From the submissions, I noticed that some of my hidden tests need to be updated. Is it possible to update those hidden tests so that the auto-grader will run on the new…
cisisc
  • 31
  • 3
3
votes
1 answer

Two jupyter notebook running at the same port

I am using the Ubuntu sub-system on Windows 10. I opened a terminal and entered the command: jupyter notebook and then a notebook is started at port 8888. Without closing this one, I opened another terminal and typed in jupyter notebook again,…
Jinhua Wang
  • 1,679
  • 1
  • 17
  • 44
3
votes
1 answer

Gradle dependencies for Jupyter notebook

I'm writing Java code in a Jupyter Notebook via IJava . I want to add external dependencies such as OpenCSV. Using gradle, this would normally be incorporated in the build.gradle file via the line compile 'com.opencsv:opencsv:4.3.2' How can I add…
Mark Teese
  • 651
  • 5
  • 16
3
votes
0 answers

How can I update @jupyterlab/application dependency?

I'm using data science notebook docker image to hose my jupyter lab. However, whenever I want to install a new extension, it will tell me my dependencies are out dated. Here is the detail: "@jupyterlab/xkcd-extension@0.6.0" is not compatible with…
Yuze Ma
  • 357
  • 1
  • 9
3
votes
0 answers

(111) connection refused to localhost in jupyter notebook running on windows server 2012

I'm trying to use jupyter notebook in a Windows Server 2012 virtual machine. I have succesfully installed Anaconda 3 without problems. When running jupyter notebookfrom the anaconda prompt, in the comand line i see a message telling me the port 8888…
3
votes
1 answer

Launching a python script as a background job on Jupyter

I am trying to run a *.py file as a background service in Jupiter notebook. from IPython.lib import backgroundjobs as bg jobs = bg.BackgroundJobManager() jobs.new(%run -i "script.py") # Not working jobs.new("script.py") # Not working
Simon Lindgren
  • 2,011
  • 12
  • 32
  • 46
3
votes
2 answers

Google Cloud Platform jupyter notebook still runnig after off local PC

I'm new at GCP and I'm trying to keep my process running on Jupyter Notebook after shutting down my local PC. Does anyone know how can I do it? Nowaday I open a terminal on my VM run jupter notebook and then after start the process on jupyter I'd…
Alexandre Gentil
  • 149
  • 1
  • 12
3
votes
3 answers

Possible ways to embed python matplotlib into my presentation interactively

I need to present my data in various graphs. Usually what I do is to take a screenshot of my graph (I almost exclusively make them with matplotlib) and paste it into my PowerPoint. Unfortunately my direct superior seems not to be happy with the way…
Tommy Tsang
  • 165
  • 1
  • 2
  • 9
1 2 3
99
100