From 25d7ce281c5df0031dce7694b8eded0c7b518eb2 Mon Sep 17 00:00:00 2001 From: Troels Schwarz-Linnet Date: Thu, 23 Nov 2017 14:48:03 +0100 Subject: [PATCH] Activate ipywidgets for JupyterLab. #505 --- scipy-notebook/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scipy-notebook/Dockerfile b/scipy-notebook/Dockerfile index 019ad113..df96e56c 100644 --- a/scipy-notebook/Dockerfile +++ b/scipy-notebook/Dockerfile @@ -46,6 +46,8 @@ RUN conda install --quiet --yes \ conda clean -tipsy && \ # Activate ipywidgets extension in the environment that runs the notebook server jupyter nbextension enable --py widgetsnbextension --sys-prefix && \ + # Also activate ipywidgets extension for JupyterLab + jupyter labextension install @jupyter-widgets/jupyterlab-manager && \ fix-permissions $CONDA_DIR # Install facets which does not have a pip or conda package at the moment