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
55
votes
6 answers

Is there a way to default to "Replace in all cells" in the "Find and Replace" in jupyter?

I usually want to find and replace all, but it looks like it has been set to current/highlighted cell only (https://github.com/jupyter/notebook/pull/2131). jupyter also doesn't remember the option after the dialog goes away. Is there a way to change…
ceiling cat
  • 5,501
  • 9
  • 38
  • 51
55
votes
2 answers

What are the pros and cons of Dash by Plotly vs Jupyter Dashboards?

Dash by Plotly looks like a great way for a Python developer to create interactive web apps without having to learn Javascript and Front End Web development. Another great project with similar aims and scope is Jupyter Dashboards. What are the pros…
snth
  • 5,194
  • 4
  • 39
  • 48
55
votes
4 answers

Running pytest test functions inside a jupyter notebook

I'm working on a presentation about python testing options, and one of the technologies I want to demo is pytest. I'm planning to do the presentation from an jupyter/ipython notebook. Ideally I'd like to be able to define a test function in a cell…
abingham
  • 1,294
  • 1
  • 10
  • 17
55
votes
10 answers

How do I start tensorflow docker jupyter notebook

I've installed the tensorflow docker container on an ubuntu machine. The tensorflow docker setup instructions specify: docker run -it b.gcr.io/tensorflow/tensorflow This puts me into the docker container terminal, and I can run python and execute…
Robert Graves
  • 2,290
  • 3
  • 20
  • 24
55
votes
13 answers

How do I set custom CSS for my IPython/IHaskell/Jupyter Notebook?

I would like to apply a few simple changes to the appearance of my IPython/IHaskell/Jupyter Notebooks, such as: rendered_html :link { text-decoration: none; } However, I can't figure out how to do this. I've tried many of the…
orome
  • 45,163
  • 57
  • 202
  • 418
54
votes
4 answers

Reconnecting remote Jupyter Notebook and get current cell output

I'm currently training a neural network on a remote server, using jupyter notebook. I set it up with the following: tmux jupyter-notebook --no-browser --port=5000 connecting to jupyter notebook with a browser and executing the cell for the training…
TheDude
  • 1,205
  • 2
  • 13
  • 21
54
votes
3 answers

Highlight typos in the jupyter notebook markdown

When I write something in the jupyter notebook markdown field, the typos are not highlighted and often I ended up with something like this: In almost all IDEs I have used so far, the typos are highlighted with a curly underline which was very…
Salvador Dali
  • 214,103
  • 147
  • 703
  • 753
53
votes
7 answers

plot.ly offline mode in jupyter lab not displaying plots

According to the documentation, offline mode with plot.ly in Jupyter is supposed to work after calling: from plotly.offline import download_plotlyjs, init_notebook_mode, iplot init_notebook_mode(connected=True) Now I am trying to show the following…
clstaudt
  • 21,436
  • 45
  • 156
  • 239
53
votes
3 answers

Share variables between different jupyter notebooks

I have two different Jupyter notebooks, running on the same server. What I would like to do is to access some (only a few of them) of the variables of one notebook through the other notebook (I have to compare if the two different versions of the…
user22710
  • 633
  • 1
  • 5
  • 5
52
votes
4 answers

Matplotlib: Nose, Tornado

Because I'm trying to install jupyter on my mac, I upgrated my pip. It showed me everything is all right, but then I noticed this: Requirement already up-to-date: pip in /Library/Python/2.7/site-packages/pip-10.0.0b2-py2.7.egg (10.0.0b2) …
maggie_b
  • 521
  • 1
  • 4
  • 5
52
votes
5 answers

How to do superscripts and subscripts in Jupyter Notebook?

I want to to use numbers to indicate references in footnotes, so I was wondering inside of Jupyter Notebook how can I use superscripts and subscripts?
PraveenHarris
  • 799
  • 1
  • 7
  • 10
52
votes
2 answers

Overwrite previous output in jupyter notebook

Let's assume I have a part of code that runs for some specific amount of time and each 1 second outputs something like this: iteration X, score Y. I will substitute this function with my black box function: from random import uniform import…
Salvador Dali
  • 214,103
  • 147
  • 703
  • 753
51
votes
14 answers

How to reset jupyter notebook theme to default?

I'm using the jupyter notebook installed with Anaconda (I'm on Mac). Few days ago, I wanted to change the theme to have a dark background, and I followed the instructions here. Namely, I've downloaded the theme custom.css and placed it in…
marguerite
  • 643
  • 1
  • 5
  • 9
50
votes
9 answers

How to copy multiple input cells in Jupyter Notebook

Basically I want to copy (Ctrl+C) only the code portions from multiple cells without also copying the output or the In[1]: and Out[1]: What is the easiest way to do so?
Vic
  • 825
  • 2
  • 8
  • 12
50
votes
20 answers

iPython Notebook/Jupyter autosave failed

I am working in iPython 3/Jupyter running multiple kernels and servers. As such, i often forget to personally save things as I jump around a lot. The autosave has failed for the past 3 hours. The error says: "Last Checkpoint: 3 hours ago Autosave…
angisgrate
  • 497
  • 1
  • 4
  • 5