We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c0de2f commit 4c8faa6Copy full SHA for 4c8faa6
Dockerfile
@@ -4,6 +4,8 @@ FROM continuumio/anaconda3:latest
4
# as described by Lionel Chan at http://stackoverflow.com/a/37426929/5881346
5
RUN sed -i "s/httpredir.debian.org/debian.uchicago.edu/" /etc/apt/sources.list && \
6
apt-get update && apt-get install -y build-essential && \
7
+ # Newer version of Pandas than comes with continuumio/anaconda3
8
+ conda uninstall -y pandas && pip install pandas && \
9
cd /usr/local/src && \
10
# https://github.com/tensorflow/tensorflow/issues/64#issuecomment-155270240
11
# Why does this work, when `pip install tensorflow` fails? It is a mystery
0 commit comments