"examples/vscode:/vscode.git/clone" did not exist on "1ab6be1b2666eb77cc4f849e8bf7dfb7e1856f48"
install.md 5.89 KB
Newer Older
zhangwenwei's avatar
zhangwenwei committed
1
2
3
4
## Installation

### Requirements

zhangwenwei's avatar
Doc  
zhangwenwei committed
5
6
7
8
- Linux or macOS (Windows is not currently officially supported)
- Python 3.6+
- PyTorch 1.3+
- CUDA 9.2+ (If you build PyTorch from source, CUDA 9.0 is also compatible)
zhangwenwei's avatar
zhangwenwei committed
9
- GCC 5+
zhangwenwei's avatar
zhangwenwei committed
10
11
12
13
14
15
16
17
- [mmcv](https://github.com/open-mmlab/mmcv)


### Install mmdetection

a. Create a conda virtual environment and activate it.

```shell
zhangwenwei's avatar
Doc  
zhangwenwei committed
18
conda create -n open-mmlab python=3.7 -y
zhangwenwei's avatar
zhangwenwei committed
19
20
21
22
23
24
25
26
27
conda activate open-mmlab
```

b. Install PyTorch and torchvision following the [official instructions](https://pytorch.org/), e.g.,

```shell
conda install pytorch torchvision -c pytorch
```

zhangwenwei's avatar
Doc  
zhangwenwei committed
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
Note: Make sure that your compilation CUDA version and runtime CUDA version match.
You can check the supported CUDA version for precompiled packages on the [PyTorch website](https://pytorch.org/).

`E.g.1` If you have CUDA 10.1 installed under `/usr/local/cuda` and would like to install
PyTorch 1.5, you need to install the prebuilt PyTorch with CUDA 10.1.

```python
conda install pytorch cudatoolkit=10.1 torchvision -c pytorch
```

`E.g. 2` If you have CUDA 9.2 installed under `/usr/local/cuda` and would like to install
PyTorch 1.3.1., you need to install the prebuilt PyTorch with CUDA 9.2.

```python
conda install pytorch=1.3.1 cudatoolkit=9.2 torchvision=0.4.2 -c pytorch
```

If you build PyTorch from source instead of installing the prebuilt pacakge,
you can use more CUDA versions such as 9.0.

Wenwei Zhang's avatar
Wenwei Zhang committed
48
49
c. Install [MMCV](https://mmcv.readthedocs.io/en/latest/).
*mmcv-full* is necessary since MMDetection3D relies on MMDetection, CUDA ops in *mmcv-full* are required.
zhangwenwei's avatar
zhangwenwei committed
50

Wenwei Zhang's avatar
Wenwei Zhang committed
51
The pre-build *mmcv-full* could be installed by running: (available versions could be found [here](https://mmcv.readthedocs.io/en/latest/#install-with-pip))
Wenwei Zhang's avatar
Wenwei Zhang committed
52

zhangwenwei's avatar
zhangwenwei committed
53
```shell
Wenwei Zhang's avatar
Wenwei Zhang committed
54
pip install mmcv-full==latest+torch1.5.0+cu101 -f https://download.openmmlab.com/mmcv/dist/index.html
Wenwei Zhang's avatar
Wenwei Zhang committed
55
56
57
58
59
60
61
62
63
64
65
66
```

Optionally, you could also build the full version from source:

```shell
pip install mmcv-full
```

d. Install [MMDetection](https://github.com/open-mmlab/mmdetection).

```shell
pip install git+https://github.com/open-mmlab/mmdetection.git
zhangwenwei's avatar
zhangwenwei committed
67
68
```

Wenwei Zhang's avatar
Wenwei Zhang committed
69
Optionally, you could also build MMDetection from source in case you want to modify the code:
zhangwenwei's avatar
zhangwenwei committed
70
71

```shell
Wenwei Zhang's avatar
Wenwei Zhang committed
72
73
git clone https://github.com/open-mmlab/mmdetection.git
cd mmdetection
zhangwenwei's avatar
zhangwenwei committed
74
75
76
77
pip install -r requirements/build.txt
pip install -v -e .  # or "python setup.py develop"
```

Wenwei Zhang's avatar
Wenwei Zhang committed
78
79
80
81
82
83
**Important**:

1. The required versions of MMCV and MMDetection for different versions of MMDetection3D are as below. Please install the correct version of MMCV and MMDetection to avoid installation issues.

| MMDetection3D version | MMDetection version |    MMCV version     |
|:-------------------:|:-------------------:|:-------------------:|
84
85
86
| master              | mmdet>=2.5.0        | mmcv-full>=1.1.5, <=1.3|
| 0.8.0               | mmdet>=2.5.0        | mmcv-full>=1.1.5, <=1.3|
| 0.7.0               | mmdet>=2.5.0        | mmcv-full>=1.1.5, <=1.3|
87
| 0.6.0               | mmdet>=2.4.0        | mmcv-full>=1.1.3, <=1.2|
Wenwei Zhang's avatar
Wenwei Zhang committed
88
| 0.5.0               | 2.3.0               | mmcv-full==1.0.5|
zhangwenwei's avatar
zhangwenwei committed
89
90


Wenwei Zhang's avatar
Wenwei Zhang committed
91
e. Clone the MMDetection3D repository.
92
93
94
95
96
97

```shell
git clone https://github.com/open-mmlab/mmdetection3d.git
cd mmdetection3d
```

Wenwei Zhang's avatar
Wenwei Zhang committed
98
f.Install build requirements and then install MMDetection3D.
99
100
101
102
103

```shell
pip install -v -e .  # or "python setup.py develop"
```

zhangwenwei's avatar
zhangwenwei committed
104
105
106
107
108
Note:

1. The git commit id will be written to the version number with step d, e.g. 0.6.0+2e7045c. The version will also be saved in trained models.
It is recommended that you run step d each time you pull some updates from github. If C++/CUDA codes are modified, then this step is compulsory.

zhangwenwei's avatar
zhangwenwei committed
109
110
    > Important: Be sure to remove the `./build` folder if you reinstall mmdet with a different CUDA/PyTorch version.

Wenwei Zhang's avatar
Wenwei Zhang committed
111
    ```shell
112
    pip uninstall mmdet3d
zhangwenwei's avatar
zhangwenwei committed
113
114
115
116
    rm -rf ./build
    find . -name "*.so" | xargs rm
    ```

zhangwenwei's avatar
zhangwenwei committed
117
118
119
120
121
122
123
2. Following the above instructions, mmdetection is installed on `dev` mode, any local modifications made to the code will take effect without the need to reinstall it (unless you submit some commits and want to update the version number).

3. If you would like to use `opencv-python-headless` instead of `opencv-python`,
you can install it before installing MMCV.

4. Some dependencies are optional. Simply running `pip install -v -e .` will only install the minimum runtime requirements. To use optional dependencies like `albumentations` and `imagecorruptions` either install them manually with `pip install -r requirements/optional.txt` or specify desired extras when calling `pip` (e.g. `pip install -v -e .[optional]`). Valid keys for the extras field are: `all`, `tests`, `build`, and `optional`.

124
5. The code can not be built for CPU only environment (where CUDA isn't available) for now.
zhangwenwei's avatar
Doc  
zhangwenwei committed
125

Wenwei Zhang's avatar
Wenwei Zhang committed
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
### Another option: Docker Image

We provide a [Dockerfile](https://github.com/open-mmlab/mmdetection3d/blob/master/docker/Dockerfile) to build an image.

```shell
# build an image with PyTorch 1.6, CUDA 10.1
docker build -t mmdetection3d docker/
```

Run it with

```shell
docker run --gpus all --shm-size=8g -it -v {DATA_DIR}:/mmdetection3d/data mmdetection3d
```

zhangwenwei's avatar
zhangwenwei committed
141
142
### A from-scratch setup script

zhangwenwei's avatar
Doc  
zhangwenwei committed
143
Here is a full script for setting up mmdetection with conda.
zhangwenwei's avatar
zhangwenwei committed
144
145

```shell
zhangwenwei's avatar
Doc  
zhangwenwei committed
146
conda create -n open-mmlab python=3.7 -y
zhangwenwei's avatar
zhangwenwei committed
147
148
conda activate open-mmlab

zhangwenwei's avatar
Doc  
zhangwenwei committed
149
# install latest pytorch prebuilt with the default prebuilt CUDA version (usually the latest)
zhangwenwei's avatar
zhangwenwei committed
150
conda install -c pytorch pytorch torchvision -y
Wenwei Zhang's avatar
Wenwei Zhang committed
151
152
153
154
155

# install mmcv
pip install mmcv-full

# install mmdetection
Wenwei Zhang's avatar
Wenwei Zhang committed
156
pip install git+https://github.com/open-mmlab/mmdetection.git
157

Wenwei Zhang's avatar
Wenwei Zhang committed
158
# install mmdetection3d
159
160
161
git clone https://github.com/open-mmlab/mmdetection3d.git
cd mmdetection3d
pip install -v -e .
zhangwenwei's avatar
zhangwenwei committed
162
163
```

164
### Using multiple MMDetection3D versions
zhangwenwei's avatar
zhangwenwei committed
165

166
The train and test scripts already modify the `PYTHONPATH` to ensure the script use the MMDetection3D in the current directory.
zhangwenwei's avatar
zhangwenwei committed
167

168
To use the default MMDetection3D installed in the environment rather than that you are working with, you can remove the following line in those scripts
zhangwenwei's avatar
zhangwenwei committed
169
170

```shell
zhangwenwei's avatar
Doc  
zhangwenwei committed
171
PYTHONPATH="$(dirname $0)/..":$PYTHONPATH
zhangwenwei's avatar
zhangwenwei committed
172
```