-
Notifications
You must be signed in to change notification settings - Fork 447
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MMCV==2.2.0 is used but incompatible. #279
Comments
@mohammadmirzaee25 in toml file we are using modified version of mmyolo for allow to install mmcv 2.2.0 so please check pyproject.toml file and readme instructions you can also look the google collab notebook for install https://github.com/AILab-CVC/YOLO-World/blob/master/pyproject.toml |
thanks for answering @onuralpszr . |
I am facing the same issue here. My code was working until I updated today. |
@mohammadmirzaee25 @cyber-meow looks like mmcv made new release, I will adjust toml file and make more flexible so it can also run under pytorch 1 versions as well. Let me do PR work and will send it. |
thanks @onuralpszr @cyber-meow |
I also got this error after restarting my notebook today. after fixing this error with ( mim install mmcv==2.1.0 ) I get new one : " return _bootstrap._gcd_import(name[level:], package, level) |
@kazakovaanastasia No. for me only mim install mmcv==2.1.0 is working. |
I meet the same problem: MMCV==2.2.0 is used but incompatible. Please install mmcv>=2.0.0rc4, <2.1.0. |
I got this error after mim install mmcv==2.1.0 (CUDA version (10.2) mismatches the version that was used to compile PyTorch (12.1)), and then I found my torch changed! due to yolo-world 0.1.0 auto |
Hi @linfeng26, you just need to follow the |
hi @wondervictor , mim install mmcv==2.1.0 was working but now it is not working either .
You should set |
still getting this error, did anyone resolve it and how? |
Following the suggestion of #364, I did |
|
hi. i am encountering a problem .
in demo, where i run this line:
from mmyolo.registry import RUNNERS
i get this error:
16 assert (mmcv_version >= digit_version(mmcv_minimum_version)
---> 17 and mmcv_version < digit_version(mmcv_maximum_version)),
18 f'MMCV=={mmcv.version} is used but incompatible. '
19 f'Please install mmcv>={mmcv_minimum_version}, <{mmcv_maximum_version}.'
AssertionError: MMCV==2.2.0 is used but incompatible. Please install mmcv>=2.0.0rc4, <2.2.0.
The text was updated successfully, but these errors were encountered: