mmdetection环境配置
时间: 2023-09-11 09:03:31 浏览: 175
mmdetection配置过程.md
以下是mmdetection环境配置的步骤:
1. 安装Anaconda或Miniconda
2. 创建一个新的conda环境
```
conda create -n mmdetection python=3.7 -y
```
3. 激活新的conda环境
```
conda activate mmdetection
```
4. 安装必要的依赖库
```
pip install torch torchvision cython -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install mmcv-full -i https://pypi.tuna.tsinghua.edu.cn/simple
```
5. 下载mmdetection代码
```
git clone https://github.com/open-mmlab/mmdetection.git
```
6. 安装mmdetection
```
cd mmdetection
pip install -r requirements/build.txt
pip install -v -e . # 编译安装
```
7. 测试安装是否成功
```
python tools/train.py configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco.py
```
如果能够正常运行,那么环境配置就完成了。
阅读全文