Gengzigang / PCT

This is an official implementation of our CVPR 2023 paper "Human Pose as Compositional Tokens" (https://arxiv.org/pdf/2303.11638.pdf)
MIT License
311 stars 20 forks source link

mmcv版本问题 #1

Closed EiJuN-xmu closed 1 year ago

EiJuN-xmu commented 1 year ago

我在执行指令./tools/dist_train.sh configs/pct_[base/large/huge]_classifier.py 8时,发生错误:AssertionError: MMCV==1.7.0 is used but incompatible. Please install mmcv>=2.0.0rc4, <=2.1.0. 接着我卸载当前版本的mmcv并下载2.0.0rc4版本,但是又出现错误:ImportError: cannot import name 'Config' from 'mmcv',该如何解决呀

EiJuN-xmu commented 1 year ago

我的系统是ubuntu20.04

Gengzigang commented 1 year ago

Hi, this is because the latest version of MMPose has been updated, which installs version 1.x by default. However, this repo is using version 0.x. I just updated the requirements, mmpose==0.29.0, you can install it directly.

EiJuN-xmu commented 1 year ago

Solved, thanks very much!!!!!!!!

JasOleander commented 5 months ago

I installed those modules like you said mmpose==0.29.0 and mmcv==1.7.0 and mmdet==2.26.0. But I got the mmcv._ext error. How can solve that?

gigasurgeon commented 4 months ago

I installed those modules like you said mmpose==0.29.0 and mmcv==1.7.0 and mmdet==2.26.0. But I got the mmcv._ext error. How can solve that?

you can solve it by adding the root path of this cloned repo on top of PCT/vis_tools/demo_img_with_mmdet.py

import sys
sys.path.append('/home/xyz/PCT')