From d32fda296ef8538764728309e5bdd16f61481a38 Mon Sep 17 00:00:00 2001 From: Jamie Hall Date: Thu, 19 Oct 2017 18:01:11 +1100 Subject: [PATCH] Temporarily pin numpy to 1.13 --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 7fd31672..8342a2e9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -344,6 +344,10 @@ RUN pip install --upgrade mpld3 && \ # Required to display Altair charts in Jupyter notebook jupyter nbextension install --user --py vega +# Temporary fix for Anaconda linking error +# See https://github.com/Kaggle/docker-python/issues/103 +RUN conda install -f -y numpy==1.13.0 + # Finally, apply any locally defined patches. RUN /bin/bash -c \ "cd / && for p in $(ls /tmp/patches/*.patch); do echo '= Applying patch '\${p}; patch -p2 < \${p}; done"