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

Jupyter Notebook Widgets: How to make "Filter As You Type" Textbox?

I'm trying to make a "filter as you type" textbox widget in my Jupyter Notebook in which if I write M it displays all players with "M"...if I type O after the M it displays players with "MO" in their name (e.g. MOHAMED SALAH AND MO SALAH) and so…
PythonDyson
  • 45
  • 1
  • 6
3
votes
2 answers

How to stop plots printing twice in jupyter when using subplots?

I'm working with the titanic data and I'm trying to use a combination of pyplot and seaborn to produce some subplots. I've written the following code to create 6 subplots in a 3x2 grid; plt.rcParams['figure.figsize'] = [12, 8] fig, axes =…
3
votes
0 answers

Is it possible to use other Jupyter kernels in Spyder?

I know that the Spyder IDE can be used with iPython, the specific Python Jupyter kernel, but would be feasible (directly or with minor hacking) to use Spyder also with other Jupyter kernels, like the R or Julia ones ?
Antonello
  • 6,092
  • 3
  • 31
  • 56
3
votes
1 answer

Best way to reload modules that have changed in Jupyter Lab?

Problem: I like keeping ipython notebooks within jupyter clean and putting utility functions in outside file to keep, but calling them from the notebook as needed once written. The issue is once I move the completed function to an outside file, I…
lollercoaster
  • 15,969
  • 35
  • 115
  • 173
3
votes
2 answers

Too much data given by "InteractiveShell.ast_node_interactivity" - Jupyter notebook

I want to have few outputs from one cell. For this I use: from IPython.core.interactiveshell import InteractiveShell InteractiveShell.ast_node_interactivity = "all" Code is doing well, but it's giving me some unwanted data. Out[1]:
3
votes
0 answers

How to add custom syntax highlighting in ipython for Jupyter Lab

For our in-house programming language I would like to offer syntax highlighting in Jupyter Lab. I couldn't find a resource how to do this. Is this something I need to announce to ipython?
doom4
  • 633
  • 5
  • 19
3
votes
0 answers

How to Change JupyterLab Menu ICON

Hi there I was wondering here if anyone knew how to change the icon in the menu of the JupyterLab. I've been creating a docker image that has a custom environment and have been able to change all the icons except for this one. Any insights would be…
3
votes
1 answer

Vim bindings for jupyter notebook/lab like Colab

Is there some way to have vim bindings in jupyter notebook/lab like in colab. In the included vim bindings for jupyter Lab, there isn't a NORMAL mode for editing inside the cell block. Colab however has better bindings as it allows use inside the…
kramer
  • 849
  • 2
  • 10
  • 19
3
votes
1 answer

I want to get rid of this block in jupyter notebook's RISE

I am trying to load a widget (through HTML code) into my Jupyter Notebook's cell. I am trying out ways to get rid of the block shown on left side which shows "click to scroll output;double click to hide" in the below picture: It's obtrusive. And…
VPraharsha
  • 386
  • 2
  • 8
3
votes
2 answers

How to install nteract Data Explorer as an extension in JupyterLab?

How can I use nteract Data Explorer in JupyterLab? From this link, it seems like the dx can be installed in JupyterLab (image below), but I didn't find related docs:
ZK Zhao
  • 19,885
  • 47
  • 132
  • 206
3
votes
2 answers

VCS for Jupyter Notebooks in PyCharm

I'm wondering how to make PyCharm's VCS (i.e. Git) work with Jupyter Notebook files. Changing even 1 loc results in 3 modifications detected during commit: Sorry if it's a duplicate, but I haven't found anything similar.
Anyky Beniky
  • 169
  • 1
  • 5
3
votes
1 answer

Read Only Python Notebook in Jupyter Lab

How can we edit an existing .ipynb in Jupyter Lab to be read-only? More specifically, how can we make specific cells within an existing .ipynb become read-only? Basically, other users would be able to edit cells that I allow them to (i.e. a cell…
3
votes
2 answers

How manipulate ERA5 land hourly data with Python?

I recently started to use ERA5 land-hourly data and python code. I will use data of 2 variables (total precipitation and 2 metre temperature) from an entire year (2017). Data downloaded are in GRIB or netCDF format. The things I want to do are: 1)…
Brian
  • 89
  • 1
  • 10
3
votes
3 answers

ModuleNotFoundError: No module named 'mnist'

I am trying to import a locale MNIST dataset from my computer into Jupyter Notebook, but i am getting a ModuleNotFound error. I have installed the python-mnist package # Import necessary modules from sklearn.neighbors import KNeighborsClassifier…
Theis Hansen
  • 53
  • 1
  • 5
3
votes
1 answer

Jupyter Notebooks unreadable after file move/copy operation

I now get the following error when trying to open 2 Jupyter notebooks in the notebook web file browser: This occurred after I had done a series of move and copy operations in the terminal in an attempt to resolve a git merge conflict: $ mv…
Bill
  • 10,323
  • 10
  • 62
  • 85