Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Run Jupyter cells in slideshow mode

You can display a Jupyter notebook in an active html setting by running :

$ jupyter nbconvert untitled.ipynb --to slides --post serve 

Is there any ways to run a notebook in the same slideshow format in order to allow for a live presentation/execution of your cells ?

like image 325
Adrien Pacifico Avatar asked Jan 08 '16 01:01

Adrien Pacifico


People also ask

Can you run Jupyter notebook in background?

We have seen two methods for running a Jupyter Notebook server in the background, a simple one for non-root users and one more advanced one for root users. The first needs a little chaperoning for starting and stopping, while the latter should have you covered on a server once for all.

What is %% capture in Jupyter?

Capturing Output With %%capture IPython has a cell magic, %%capture , which captures the stdout/stderr of a cell. With this magic you can discard these streams or store them in a variable.


1 Answers

Check out the Jupyter plugin RISE using Reveal.JS:

  • Github Repo: https://github.com/damianavila/RISE
  • Documentation: https://rise.readthedocs.io/en/maint-5.5/

It's awesome.

like image 102
Who8MyLunch Avatar answered Oct 02 '22 20:10

Who8MyLunch