You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Copyright (c) OpenMMLab. All rights reserved.
import mmcv
import mmengine
from mmengine.utils import digit_version
from .version import __version__, version_info
mmcv_minimum_version = '2.0.0rc4'
mmcv_maximum_version = '2.2.0'
mmcv_version = digit_version(mmcv.__version__)
mmengine_minimum_version = '0.7.1'
mmengine_maximum_version = '1.0.0'
mmengine_version = digit_version(mmengine.__version__)
assert (mmcv_version >= digit_version(mmcv_minimum_version)
and mmcv_version <= digit_version(mmcv_maximum_version)), \
f'MMCV=={mmcv.__version__} is used but incompatible. ' \
f'Please install mmcv>={mmcv_minimum_version}, <{mmcv_maximum_version}.'
assert (mmengine_version >= digit_version(mmengine_minimum_version)
and mmengine_version < digit_version(mmengine_maximum_version)), \
f'MMEngine=={mmengine.__version__} is used but incompatible. ' \
f'Please install mmengine>={mmengine_minimum_version}, ' \
f'<{mmengine_maximum_version}.'
__all__ = ['__version__', 'version_info', 'digit_version']
I think mmcv_version < digit_version(mmcv_maximum_version) here should be modified to be less than or equal to, so that it can run properly.
If it is not modified, the following error will occur.
Traceback (most recent call last):
File "F:\FinalWork\mmdetection\demo\image_demo.py", line 63, in <module>
from mmdet.apis import DetInferencer
File "f:\finalwork\mmdetection\mmdet\__init__.py", line 16, in <module>
assert (mmcv_version >= digit_version(mmcv_minimum_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:
I think
mmcv_version < digit_version(mmcv_maximum_version)
here should be modified to be less than or equal to, so that it can run properly.If it is not modified, the following error will occur.
The text was updated successfully, but these errors were encountered: