From 0405e88440aac1788b1bb9eef3303fe301842f9c Mon Sep 17 00:00:00 2001 From: dong zhihong Date: Mon, 14 Aug 2017 14:43:14 +0800 Subject: [PATCH] fix numpy docker --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3ef3aa14f41..885bec9ba0b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,9 +34,6 @@ RUN apt-get update && \ net-tools && \ apt-get clean -y -# paddle is using numpy.flip, which is introduced since 1.12.0 -# RUN pip --no-cache-dir install 'numpy>=1.12.0' - # Install Go and glide RUN wget -qO- https://storage.googleapis.com/golang/go1.8.1.linux-amd64.tar.gz | \ tar -xz -C /usr/local && \ @@ -67,7 +64,7 @@ RUN pip install pre-commit 'ipython==5.3.0' && \ pip install opencv-python # paddle is using numpy.flip, which is introduced since 1.12.0 -RUN pip --no-cache-dir install 'numpy>=1.12.0' +# RUN pip --no-cache-dir install 'numpy>=1.12.0' COPY ./python/requirements.txt /root/ RUN pip install -r /root/requirements.txt -- GitLab