From 5702f53a0aaa62c36753e4595920c3a249f6d6c0 Mon Sep 17 00:00:00 2001 From: LIYOU ZHOU Date: Tue, 26 Nov 2019 11:12:06 +0000 Subject: [PATCH] Force install a py2 compatible version of pandas kitti2bag depends on pykitti which depends on pandas which deprecated py2 support in 0.24 causing breakage in the docker build. This patch works around this issue by first installing a py2 compatible version of pandas before installing kitti2bag. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 04bec59..eb23825 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,7 @@ RUN apt-get update \ python-pip python-matplotlib \ && rm -rf /var/lib/apt/lists/* COPY . /kitti2bag +RUN pip install pandas==0.23 RUN pip install -e /kitti2bag WORKDIR /data