From d684910b00877fd91fcd0899c79b28f047ae0814 Mon Sep 17 00:00:00 2001 From: Gabriel Date: Mon, 19 Dec 2016 22:30:25 -0500 Subject: [PATCH 1/2] pip install tifffile and descartes --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1a61ca8a..a0354170 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ RUN sed -i "s/httpredir.debian.org/debian.uchicago.edu/" /etc/apt/sources.list & pip install tensorflow-0.12.0rc0-cp35-cp35m-linux_x86_64.whl && \ # Vowpal Rabbit apt-get install -y libboost-program-options-dev zlib1g-dev libboost-python-dev && \ - cd /usr/lib/x86_64-linux-gnu/ && rm -f libboost_python.a && rm -f libboost_python.so && \ + cd /usr/lib/x86_64-linux-gnu/ && rm -f libboost_python.a && rm -f libboost_python.so && \ ln -sf libboost_python-py34.so libboost_python.so && ln -sf libboost_python-py34.a libboost_python.a && \ pip install vowpalwabbit && \ pip install seaborn python-dateutil dask pytagcloud pyyaml ggplot joblib \ @@ -279,6 +279,8 @@ RUN pip install --upgrade mpld3 && \ pip install pystan && \ pip install ImageHash && \ pip install git+https://github.com/pymc-devs/pymc3 && \ + pip install tifffile && \ + pip install descartes && \ ##### ^^^^ Add new contributions above here # clean up pip cache rm -rf /root/.cache/pip/* && \ From e4df3c682d499629fe9654eb007e8bd43a28dd7e Mon Sep 17 00:00:00 2001 From: Gabriel Date: Tue, 20 Dec 2016 16:03:53 -0500 Subject: [PATCH 2/2] tacked on the geojson module as well --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index a0354170..c9ab8c73 100644 --- a/Dockerfile +++ b/Dockerfile @@ -281,6 +281,7 @@ RUN pip install --upgrade mpld3 && \ pip install git+https://github.com/pymc-devs/pymc3 && \ pip install tifffile && \ pip install descartes && \ + pip install geojson && \ ##### ^^^^ Add new contributions above here # clean up pip cache rm -rf /root/.cache/pip/* && \