Skip to content

hainegroup/ospy-rise-binder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Creating interactive presentations on Binder with RISE

Binder

Shortcuts

Useful commands

  • install environment: conda env create -f binder/environment.yml
  • download data and setup: . binder/postBuild
  • blacken: black-nb --clear-output .
  • to html: jupyter nbconvert --to slides --execute notebook.ipynb

RISE allows you to quickly generate a live, interactive presentation from a Jupyter Notebook that is connected to the underlying Kernel of the notebook. Using a new feature for automatically launching the RISE plugin when a notebook is opened, RISE can be used to share interactive presentations that run in the cloud with Binder. This repository demonstrates how to accomplish this.

To make your RISE presentation automatically-launch with it is open, add an autolaunch=true configuration parameter to a notebook's livereveal section in the metadata. E.g.:

...
"livereveal": {
        "autolaunch": true
        }
...

When the notebook is launched, your presentation will automatically begin.

See the RISE Documentation for more information.