From 735bba793da95bd2752db98178821746e5679598 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E6=96=87=E4=BF=8A?= <48756871+raykindle@users.noreply.github.com> Date: Fri, 11 Mar 2022 18:56:17 +0800 Subject: [PATCH] fix an error that mmcv version does not match when when import mmpose (#1234) Co-authored-by: zhangwenjun --- docker/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index f7d6192910..f7d4ef6490 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -17,7 +17,8 @@ RUN pip install cython RUN pip install xtcocotools # Install MMCV -RUN pip install mmcv-full==latest+torch1.6.0+cu101 -f https://download.openmmlab.com/mmcv/dist/index.html +RUN pip install --no-cache-dir --upgrade pip wheel setuptools +RUN pip install --no-cache-dir mmcv-full==1.3.17 -f https://download.openmmlab.com/mmcv/dist/cu101/torch1.6.0/index.html # Install MMPose RUN conda clean --all