From 733eaa196f13923912851d0be0b24614da0102df Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 4 Mar 2019 10:37:43 -0500 Subject: Handle notebook issue #4399 --- etc/pkgs/001-jupyter.sh | 4 ++++ 1 file changed, 4 insertions(+) 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 -- cgit