diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-01-31 14:24:24 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-01-31 14:24:24 -0500 |
commit | 30ea4ba9222c0d9b24bf401639eddef4e5b9ef89 (patch) | |
tree | 13ee9f133b6cc3fc6b6ce6aeef48d1347e125569 /etc/pkgs/003-jupyter.sh | |
download | docker-pipeline-nb-30ea4ba9222c0d9b24bf401639eddef4e5b9ef89.tar.gz |
Initial commit
Diffstat (limited to 'etc/pkgs/003-jupyter.sh')
-rwxr-xr-x | etc/pkgs/003-jupyter.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/etc/pkgs/003-jupyter.sh b/etc/pkgs/003-jupyter.sh new file mode 100755 index 0000000..dfc312a --- /dev/null +++ b/etc/pkgs/003-jupyter.sh @@ -0,0 +1,15 @@ +#!/bin/bash +set -x + +pip install --upgrade --progress-bar=off \ + notebook==5.7.2 \ + jupyterhub==0.9.4 \ + jupyterlab==0.35.4 + +jupyter labextension install @jupyterlab/hub-extension@^0.12.0 +jupyter notebook --generate-config -y + +# Clean up +npm cache clean --force +rm -rf ${TOOLCHAIN}/share/jupyter/lab/staging +rm -rf /home/${USER_ACCT}/.cache/yarn |