diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-03-04 10:37:43 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-03-04 10:37:43 -0500 |
commit | 733eaa196f13923912851d0be0b24614da0102df (patch) | |
tree | a99a40b503f327336710a0fbe438bd2f4213e421 | |
parent | a148c34c9eea8a524e6e5c60df58a508e76fbb45 (diff) | |
download | docker-pipeline-nb-733eaa196f13923912851d0be0b24614da0102df.tar.gz |
Handle notebook issue #4399
-rwxr-xr-x | etc/pkgs/001-jupyter.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/etc/pkgs/001-jupyter.sh b/etc/pkgs/001-jupyter.sh index dfc312a..7ff1cd4 100755 --- a/etc/pkgs/001-jupyter.sh +++ b/etc/pkgs/001-jupyter.sh @@ -6,6 +6,10 @@ pip install --upgrade --progress-bar=off \ jupyterhub==0.9.4 \ jupyterlab==0.35.4 +# Workaround for kernel+WebSocket failure +# See: https://github.com/jupyter/notebook/issues/4399 +pip install --progress-bar=off tornado==5.1.1 + jupyter labextension install @jupyterlab/hub-extension@^0.12.0 jupyter notebook --generate-config -y |