-
Notifications
You must be signed in to change notification settings - Fork 106
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
Installation problem: mmcv package configuration #90
Comments
I have received the same error message. I guess it is the wrong version of mmdetection3d caused this problem , but I have not figure it out yet. |
guess mmdetection3d_0.17.3 would be compatible |
based on the docs that I have found , mmdet3d==0.14.0+mmdet2.11.0+mmcv1.4.0 may be helpful. |
Hi, Have you successfully installed mmdet3d==0.11.0, mmdet 2.11.0, and mmcv 1.4.0? If so, could you please provide the steps you followed to set up the environment? I have installed mmdet 2.11.0 and mmcv 1.4.0 but I'm encountering an issue with the mmdet3d 0.11.0 version.
|
I have downloaded the Dockerfile and built the image from it. The issue I'm encountering is that when I attempt to execute any file within the BEVFUSION directory, I receive an error message.
Well I have done some research and found that the mmcv package should not be downloaded directly with pip instead we should use the Wheel installation. Though, when I do install the
mmcv 1.4.0 wheel version
I get this error message :Traceback (most recent call last): File "demo/pcd_demo.py", line 3, in <module> from mmdet3d.apis import inference_detector, init_detector, show_result_meshlab File "/mmdetection3d/BEVFusion/mmdet3d/__init__.py", line 3, in <module> import mmdet File "/mmdetection3d/BEVFusion/mmdetection/mmdet/__init__.py", line 18, in <module> f'MMCV=={mmcv.__version__} is used but incompatible. ' \ AssertionError: MMCV==1.4.0 is used but incompatible. Please install mmcv>=2.0.0rc4, <2.2.0.
so I tried to download the mmcv 2.0.0rc4 but Now I'm getting this error insteadAssertionError: MMCV==2.0.0rc4 is used but incompatible. Please install mmcv>=1.2.4, <=1.4.0.
The text was updated successfully, but these errors were encountered: