[CI] Fix broken installation of Pandas (#4722)

* [CI] Fix broken installation of Pandas

* Update Dockerfile.gpu
This commit is contained in:
Philip Hyunsu Cho 2019-07-30 22:03:11 -07:00 committed by GitHub
parent b43f08bea5
commit 166def9f75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ ENV DEBIAN_FRONTEND noninteractive
# Install all basic requirements
RUN \
apt-get update && \
apt-get install -y wget unzip bzip2 libgomp1 && \
apt-get install -y wget unzip bzip2 libgomp1 build-essential && \
# Python
wget https://repo.continuum.io/miniconda/Miniconda3-4.5.12-Linux-x86_64.sh && \
bash Miniconda3-4.5.12-Linux-x86_64.sh -b -p /opt/python
@ -17,7 +17,7 @@ ENV PATH=/opt/python/bin:$PATH
# Install Python packages
RUN \
pip install numpy pytest scipy scikit-learn pandas matplotlib wheel kubernetes urllib3 graphviz && \
conda install dask=2.0.0
pip install "dask[complete]==2.0.0"
ENV GOSU_VERSION 1.10