Last active
June 20, 2019 19:30
-
-
Save hoogenm/4b6974c07422747b290e7a75c301d15d to your computer and use it in GitHub Desktop.
Add Live slideshow to Jupyter (thru Conda, using RISE)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Add live slideshow to Jupyter (thru Conda, using RISE) | |
| # RISE is based on reveal.js, can (also) be found on https://github.com/damianavila | |
| conda install -y -c damianavila82 rise==4.0.0b1 | |
| jupyter nbextension install rise --py --sys-prefix | |
| jupyter nbextension enable rise --py --sys-prefix |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment