Skip to content

Commit 72ed33d

Browse files
committed
Downgrade tornado to the last known good version to fix notebook start issue.
The latest version of tornado has a bug that breaks Jupyter notebook: jupyter/notebook#4439
1 parent 835a154 commit 72ed33d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,9 @@ RUN pip install bcolz && \
406406
pip install six && \
407407
pip install terminado && \
408408
pip install testpath && \
409-
pip install tornado && \
409+
# Latest version (6.0) of tornado breaks Jupyter notebook:
410+
# https://github.com/jupyter/notebook/issues/4439
411+
pip install tornado==5.0.2 && \
410412
pip install tqdm && \
411413
pip install traitlets && \
412414
pip install wcwidth && \

0 commit comments

Comments
 (0)