From 832dbb97c06a267aa990be4efd89af622b1b9124 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Fri, 28 Jul 2023 13:46:42 +0400 Subject: [PATCH] Update rise to suggest JupyterLab extension --- docs/using/recipes.md | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/docs/using/recipes.md b/docs/using/recipes.md index c570e796..bf4ee113 100644 --- a/docs/using/recipes.md +++ b/docs/using/recipes.md @@ -143,22 +143,24 @@ which includes steps for requesting and renewing a Let's Encrypt certificate. Ref: -## Slideshows with Jupyter and RISE +## Slideshows with JupyterLab and RISE -[RISE](https://github.com/damianavila/RISE) allows via an extension to create live slideshows of your -notebooks, with no conversion, adding javascript Reveal.js: +[RISE](https://github.com/jupyterlab-contrib/rise): "Live" Reveal.js JupyterLab Slideshow Extension. -```bash -# Add Live slideshows with RISE -RUN mamba install --yes -c damianavila82 rise && \ +```{note} +We're providing the recipe to install JupyterLab extension. +You can find the original Jupyter Notebook extenstion [here](http://github.com/damianavila/RISE) +``` + +```dockerfile +FROM jupyter/base-notebook + +RUN mamba install --yes 'jupyterlab_rise' && \ mamba clean --all -f -y && \ fix-permissions "${CONDA_DIR}" && \ fix-permissions "/home/${NB_USER}" ``` -Credit: [Paolo D.](https://github.com/pdonorio) based on -[docker-stacks/issues/43](https://github.com/jupyter/docker-stacks/issues/43) - ## xgboost You need to install conda-forge's gcc for Python xgboost to work correctly.