jdemeyer / RISE

RISE: "Live" Reveal.js Jupyter/IPython Slideshow Extension

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RISE

RISE allows you to instantly turn your Jupyter Notebooks into a slideshow. No out-of-band conversion is needed, switch from jupyter notebook to a live reveal.js-based slideshow in a single keystroke, and back.

Basic usage

Resources

RISE stands for Reveal.js - Jupyter/IPython Slideshow Extension:

Installation

From the most simple to the most complex one, you have 3 options:

Option 1 - Using conda (recommended):

conda install -c conda-forge rise

If you are a Julia user, you can do this from the Julia REPL with

using Conda
Conda.add_channel("conda-forge")
Conda.add("rise")

Option 2 - Using pip (less recommended):

pip install RISE

Option 3 - The old way (are sure sure you want to go this path?):

To install this nbextension, simply run python setup.py install from the RISE repository (please use the latest tag available or try master if you want).

And then two more steps to install the JS and CSS in the proper places and enable the extension:

jupyter-nbextension install rise --py --sys-prefix
jupyter-nbextension enable rise --py --sys-prefix

Conclusion

If you use conda, life will be easy ;-)

NOTE: in all the options available the --sys-prefix option will install and enable the extension in the current environment, if you want a --user based or a --system based installation just use those options instead in the above commands.

Development

To install RISE in development mode, see the Developer section of the RISE documentation.

Feedback

If you have any feedback, or find any bugs, please let me know just opening an issue.

About

RISE: "Live" Reveal.js Jupyter/IPython Slideshow Extension

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:JavaScript 63.1%Language:HTML 25.2%Language:CSS 6.7%Language:Python 5.0%