Install jupyter-offlinenotebook extension

This adds the offlinenotebook extension to the base install. With this
users can download their notebook even after the server has gone away.
pull/845/head
Tim Head 2020-02-05 23:16:57 +01:00
rodzic 2e477ddb9a
commit c340f4a44e
1 zmienionych plików z 7 dodań i 0 usunięć

Wyświetl plik

@ -50,6 +50,13 @@ echo "installing notebook env:"
cat /tmp/environment.yml
conda env create -p ${NB_PYTHON_PREFIX} -f /tmp/environment.yml
# Install jupyter-offline-notebook to allow users to download notebooks
# after the server connection has been lost
# This will install and enable the extension for jupyter notebook
${NB_PYTHON_PREFIX}/bin/python -m pip install https://github.com/manics/jupyter-offlinenotebook/archive/7ba3520.zip
# and this installs it for lab
${NB_PYTHON_PREFIX}/bin/jupyter labextension install jupyter-offlinenotebook
# empty conda history file,
# which seems to result in some effective pinning of packages in the initial env,
# which we don't intend.