-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment.yml
45 lines (44 loc) · 1.63 KB
/
environment.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: rise-presentation
channels:
- defaults
- conda-forge
- anaconda
dependencies:
- git # for editable installs
- pip # for editable installs
- nbdime # dev tools: jupyter: nb diffs
- jupytext # dev tools: jupyter: nb as py scripts for git
- notebook # rise does not yet support jupyterlab
- rise # reveal.js presentations with jupyter
- jupyterlab # successor of notebook
- jupyterlab_rise # rise edition for jupyterlab
- nbconvert # for exporting rise presentations
- jupyter_contrib_nbextensions # needed for jupyter nbconvert
- ipympl # | for %matplotlib widget
- ipydatawidgets # |
# How to use:
# 0. install environment
# > conda/mamba/... env create -f environment.yml
# 1. open notebook or lab
# > conda/mamba/... activate rise-presentation
# > jupyter notebook
# > jupyter-lab ./
# 2. edit presentation in notebook, use enter slideshow button
# 3. optional: convert to reveal.js HTML presentation (no notebook needed):
# (note that in default theme, presentation looks better in notebook than HTML)
# > jupyter nbconvert --to slides presentation.ipynb
# 4. optional: convert to PDF
# > https://rise.readthedocs.io/en/stable/exportpdf.html
#
#
# Rerences as of 2023-05-15:
# - RISE for notebook
# - https://jupyter-notebook.readthedocs.io
# - https://github.com/damianavila/RISE
# - https://rise.readthedocs.io
# - RISE for lab
# - https://jupyterlab.readthedocs.io
# - https://github.com/jupyterlab-contrib/rise
# - Misc
# - https://nbconvert.readthedocs.io
# - https://jupyter-contrib-nbextensions.readthedocs.io