2.0.0rc0版本的mmcv搭配什么版本的mmdet合适
时间: 2023-10-07 08:06:28 浏览: 120
mmcv-2.0.0rc4-cp38-cp38-manylinux1_x86_64whl.zip
对于mmcv 2.0.0rc0版本,建议使用mmdetection 2.16.0及以上版本。您可以使用以下命令安装:
```
pip install mmcv-full==1.3.10 -f https://download.openmmlab.com/mmcv/dist/cu102/torch1.7.0/index.html
pip install mmdetection==2.16.0
```
请注意,您需要根据您的环境和需求选择正确的CUDA版本。这里使用的是CUDA 10.2版本,如果您使用的不同版本,请根据需要修改`cu102/torch1.7.0`部分。
阅读全文