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

Rpubs equivalence for Python

Rpubs works great for sharing and posting r presentations. Is there an equivalent site for python, or more specifically Jupyter notebooks?
PizzaAndCode
  • 340
  • 1
  • 3
  • 12
3
votes
3 answers

python jupyter magic %%writefile returns SyntaxError: invalid syntax

# [ ] The following program asks the user for a circle radius then display the area and circumference # Modify the program so it only displays the information when executed directly # The program should not display anything if it is imported as a…
Karen Jiang
  • 175
  • 1
  • 3
  • 12
3
votes
1 answer

How to open Jupyter notebook files located in C./D./ Drive?

I am trying to open python files located in my C. Drive, but cannot reach there, as I can only open files located in Desktop or other files.
Chintan
  • 59
  • 1
  • 2
  • 9
3
votes
0 answers

Missing XeLateX when trying to use NBconvert (to PDF) on Windows

Jupyter's default export to PDF, like the command-line NBconvert tool, are telling me that I can't convert my notebook to PDF because the PDF conversion goes via xelatex. The error message refers me to this help page, so I installed MiKTeX. I have a…
Josh Friedlander
  • 10,870
  • 5
  • 35
  • 75
3
votes
2 answers

Dynamically adjust axes in bqplot

I'm working on a jupyter based dashboard for data analysis and am planning on using bqplot for plotting the data. Part of the spec for the dashboard is to be able to adjust the axes to be able to zoom in/out on the data. So far I've been able to get…
SamH
  • 203
  • 1
  • 2
  • 13
3
votes
1 answer

jupyter lab open an iframe on a tab for monitoring dask scheduler

I am developping with dask distributed and this package provides a very useful debugging view as a bokeh application. I want to have this application next to my notebook in a jupyterlab tab. I have managed to do so by opening the jupyter lab…
3
votes
2 answers

Can I get html string from IPython.display.Markdown?

I want to get html from markdown on Jupyter Notebook. like this. from IPython import display display.Code("import this")._repr_html_() But I get: IPython.core.display.Markdown object has no attribute '_repr_html_'. Any idea?
driller
  • 131
  • 3
3
votes
1 answer

What is the use of Jupyter Notebook cluster

Can you tell me what is the use of jupyter cluster. I created jupyter cluster,and established its connection.But still I'm confused,how to use this cluster effectively? Thank you
3
votes
1 answer

How to make an altair plot within an IF statement?

The situation seems to be quite simple: I am working in a Jupyter Lab file with several Altair plots, which eventually make the file too large to run and to save. Since I don't need to see these plots every single time, I figured I could avoid this…
ffi
  • 353
  • 4
  • 11
3
votes
1 answer

can't import 'torchtext' module in jupyter notebook while using pytorch

I installed pytorch using anaconda3 and my created virtual conda environment named 'torchTest'. I installed all the modules needed but, codes doesn't work in jupyter python. I installed torchtext using 1.pip install…
dante
  • 933
  • 4
  • 16
  • 39
3
votes
1 answer

Adding space between two displays of df in Jupyter notebook

How to add more space between the two dataframes display from Ipython.display import display display(df_a) display(df_b)
Saquib
  • 273
  • 3
  • 9
3
votes
1 answer

No module named Pandas in Jupyter Notebook

I know there is a huge number of questions on this topics, but not even one worked for me, not here, not on github. I have installed anaconda2 for macOS a few days before. I know pandas come with Anaconda by default, and in the last year I haven't…
jovicbg
  • 1,523
  • 8
  • 34
  • 74
3
votes
0 answers

Jupyter Notebook won't display graphs on Gitlab

Although I use "%matplotlib inline", I cannot get my publically shared notebook to display graphs (but it does display dataFrames...?): https://gitlab.com/kim.rants/jupyter_notebooks_thesis/blob/master/feature_extraction.ipynb See output 10 and 11.…
Kim O
  • 551
  • 1
  • 8
  • 19
3
votes
3 answers

How to make a Jupyter Docker container use more memory

I'm running a jupyter/scipy-notebook Docker container. I have not restricted the memory assigned to the container with the run command. However, what I'm seeing issuing the docker stats command is that the container is limiting its memory usage to 2…
espogian
  • 607
  • 8
  • 23
3
votes
0 answers

JupyterLab - add a subset of commands to sidebar tab

I have some experience with Jupyter Notebook tweaking, but not with JupyterLab. Basically, I want to add a subset of commands to a side tab. Let's say I've registered the command "sample" under the heading "DTLA" function addCommands(app:…
SQLesion
  • 165
  • 2
  • 9
1 2 3
99
100