|
| 1 | +## Installation |
| 2 | + |
| 3 | +Our [Colab Notebook](https://colab.research.google.com/drive/16jcaJoc6bCFAQ96jDe2HwtXj7BMD_-m5) |
| 4 | +has step-by-step instructions that install detectron2. |
| 5 | +The [Dockerfile](docker) |
| 6 | +also installs detectron2 with a few simple commands. |
| 7 | + |
| 8 | +### Requirements |
| 9 | +- Linux or macOS with Python ≥ 3.6 |
| 10 | +- PyTorch ≥ 1.4 |
| 11 | +- [torchvision](https://github.com/pytorch/vision/) that matches the PyTorch installation. |
| 12 | + You can install them together at [pytorch.org](https://pytorch.org) to make sure of this. |
| 13 | +- [pycocotools](https://github.com/cocodataset/cocoapi). Install it by `pip install pycocotools>=2.0.1`. |
| 14 | +- OpenCV, optional, needed by demo and visualization |
| 15 | + |
| 16 | + |
| 17 | +### Build Detectron2 from Source |
| 18 | + |
| 19 | +gcc & g++ ≥ 5 are required. [ninja](https://ninja-build.org/) is recommended for faster build. |
| 20 | +After having them, run: |
| 21 | +``` |
| 22 | +python -m pip install 'git+https://github.com/facebookresearch/detectron2.git' |
| 23 | +# (add --user if you don't have permission) |
| 24 | +
|
| 25 | +# Or, to install it from a local clone: |
| 26 | +git clone https://github.com/facebookresearch/detectron2.git |
| 27 | +python -m pip install -e detectron2 |
| 28 | +
|
| 29 | +# Or if you are on macOS |
| 30 | +CC=clang CXX=clang++ python -m pip install ...... |
| 31 | +``` |
| 32 | + |
| 33 | +To __rebuild__ detectron2 that's built from a local clone, use `rm -rf build/ **/*.so` to clean the |
| 34 | +old build first. You often need to rebuild detectron2 after reinstalling PyTorch. |
| 35 | + |
| 36 | +### Install Pre-Built Detectron2 (Linux only) |
| 37 | + |
| 38 | +Choose from this table: |
| 39 | + |
| 40 | +<table class="docutils"><tbody><th width="80"> CUDA </th><th valign="bottom" align="left" width="100">torch 1.5</th><th valign="bottom" align="left" width="100">torch 1.4</th> <tr><td align="left">10.2</td><td align="left"><details><summary> install </summary><pre><code>python -m pip install detectron2 -f \ |
| 41 | + https://dl.fbaipublicfiles.com/detectron2/wheels/cu102/torch1.5/index.html |
| 42 | +</code></pre> </details> </td> <td align="left"> </td> </tr> <tr><td align="left">10.1</td><td align="left"><details><summary> install </summary><pre><code>python -m pip install detectron2 -f \ |
| 43 | + https://dl.fbaipublicfiles.com/detectron2/wheels/cu101/torch1.5/index.html |
| 44 | +</code></pre> </details> </td> <td align="left"><details><summary> install </summary><pre><code>python -m pip install detectron2 -f \ |
| 45 | + https://dl.fbaipublicfiles.com/detectron2/wheels/cu101/torch1.4/index.html |
| 46 | +</code></pre> </details> </td> </tr> <tr><td align="left">10.0</td><td align="left"> </td> <td align="left"><details><summary> install </summary><pre><code>python -m pip install detectron2 -f \ |
| 47 | + https://dl.fbaipublicfiles.com/detectron2/wheels/cu100/torch1.4/index.html |
| 48 | +</code></pre> </details> </td> </tr> <tr><td align="left">9.2</td><td align="left"><details><summary> install </summary><pre><code>python -m pip install detectron2 -f \ |
| 49 | + https://dl.fbaipublicfiles.com/detectron2/wheels/cu92/torch1.5/index.html |
| 50 | +</code></pre> </details> </td> <td align="left"><details><summary> install </summary><pre><code>python -m pip install detectron2 -f \ |
| 51 | + https://dl.fbaipublicfiles.com/detectron2/wheels/cu92/torch1.4/index.html |
| 52 | +</code></pre> </details> </td> </tr> <tr><td align="left">cpu</td><td align="left"><details><summary> install </summary><pre><code>python -m pip install detectron2 -f \ |
| 53 | + https://dl.fbaipublicfiles.com/detectron2/wheels/cpu/torch1.5/index.html |
| 54 | +</code></pre> </details> </td> <td align="left"><details><summary> install </summary><pre><code>python -m pip install detectron2 -f \ |
| 55 | + https://dl.fbaipublicfiles.com/detectron2/wheels/cpu/torch1.4/index.html |
| 56 | +</code></pre> </details> </td> </tr></tbody></table> |
| 57 | + |
| 58 | + |
| 59 | +Note that: |
| 60 | +1. The pre-built package has to be used with corresponding version of CUDA and official PyTorch release. |
| 61 | + It will not work with a different version of PyTorch or a non-official build of PyTorch. |
| 62 | +2. Such installation is out-of-date w.r.t. master branch of detectron2. It may not be |
| 63 | + compatible with the master branch of a research project that uses detectron2 (e.g. those in |
| 64 | + [projects](projects) or [meshrcnn](https://github.com/facebookresearch/meshrcnn/)). |
| 65 | + |
| 66 | +### Common Installation Issues |
| 67 | + |
| 68 | +Click each issue for its solutions: |
| 69 | + |
| 70 | +<details> |
| 71 | +<summary> |
| 72 | +Undefined symbols that contains TH,aten,torch,caffe2; missing torch dynamic libraries; segmentation fault immediately when using detectron2. |
| 73 | +</summary> |
| 74 | +<br/> |
| 75 | + |
| 76 | +This usually happens when detectron2 or torchvision is not |
| 77 | +compiled with the version of PyTorch you're running. |
| 78 | + |
| 79 | +If the error comes from a pre-built torchvision, uninstall torchvision and pytorch and reinstall them |
| 80 | +following [pytorch.org](http://pytorch.org). So the versions will match. |
| 81 | + |
| 82 | +If the error comes from a pre-built detectron2, check [release notes](https://github.com/facebookresearch/detectron2/releases) |
| 83 | +to see the corresponding pytorch version required for each pre-built detectron2. |
| 84 | +Or uninstall and reinstall the correct pre-built detectron2. |
| 85 | + |
| 86 | +If the error comes from detectron2 or torchvision that you built manually from source, |
| 87 | +remove files you built (`build/`, `**/*.so`) and rebuild it so it can pick up the version of pytorch currently in your environment. |
| 88 | + |
| 89 | +If you cannot resolve this problem, please include the output of `gdb -ex "r" -ex "bt" -ex "quit" --args python -m detectron2.utils.collect_env` |
| 90 | +in your issue. |
| 91 | +</details> |
| 92 | + |
| 93 | +<details> |
| 94 | +<summary> |
| 95 | +Undefined C++ symbols (e.g. `GLIBCXX`) or C++ symbols not found. |
| 96 | +</summary> |
| 97 | +<br/> |
| 98 | +Usually it's because the library is compiled with a newer C++ compiler but run with an old C++ runtime. |
| 99 | + |
| 100 | +This often happens with old anaconda. |
| 101 | +Try `conda update libgcc`. Then rebuild detectron2. |
| 102 | + |
| 103 | +The fundamental solution is to run the code with proper C++ runtime. |
| 104 | +One way is to use `LD_PRELOAD=/path/to/libstdc++.so`. |
| 105 | + |
| 106 | +</details> |
| 107 | + |
| 108 | +<details> |
| 109 | +<summary> |
| 110 | +"Not compiled with GPU support" or "Detectron2 CUDA Compiler: not available". |
| 111 | +</summary> |
| 112 | +<br/> |
| 113 | +CUDA is not found when building detectron2. |
| 114 | +You should make sure |
| 115 | + |
| 116 | +``` |
| 117 | +python -c 'import torch; from torch.utils.cpp_extension import CUDA_HOME; print(torch.cuda.is_available(), CUDA_HOME)' |
| 118 | +``` |
| 119 | + |
| 120 | +print valid outputs at the time you build detectron2. |
| 121 | + |
| 122 | +Most models can run inference (but not training) without GPU support. To use CPUs, set `MODEL.DEVICE='cpu'` in the config. |
| 123 | +</details> |
| 124 | + |
| 125 | +<details> |
| 126 | +<summary> |
| 127 | +"invalid device function" or "no kernel image is available for execution". |
| 128 | +</summary> |
| 129 | +<br/> |
| 130 | +Two possibilities: |
| 131 | + |
| 132 | +* You build detectron2 with one version of CUDA but run it with a different version. |
| 133 | + |
| 134 | + To check whether it is the case, |
| 135 | + use `python -m detectron2.utils.collect_env` to find out inconsistent CUDA versions. |
| 136 | + In the output of this command, you should expect "Detectron2 CUDA Compiler", "CUDA_HOME", "PyTorch built with - CUDA" |
| 137 | + to contain cuda libraries of the same version. |
| 138 | + |
| 139 | + When they are inconsistent, |
| 140 | + you need to either install a different build of PyTorch (or build by yourself) |
| 141 | + to match your local CUDA installation, or install a different version of CUDA to match PyTorch. |
| 142 | + |
| 143 | +* PyTorch/torchvision/Detectron2 is not built for the correct GPU architecture (aka. compute compatibility). |
| 144 | + |
| 145 | + The compute compatibility included by PyTorch/detectron2/torchvision is available in the "architecture flags" in |
| 146 | + `python -m detectron2.utils.collect_env`. It must include |
| 147 | + the compute compatibility of your GPU, which can be found at [developer.nvidia.com/cuda-gpus](https://developer.nvidia.com/cuda-gpus). |
| 148 | + |
| 149 | + If you're using pre-built PyTorch/detectron2/torchvision, they have included support for most popular GPUs already. |
| 150 | + If not supported, you need to build them from source. |
| 151 | + |
| 152 | + When building detectron2/torchvision from source, they detect the GPU device and build for only the device. |
| 153 | + This means the compiled code may not work on a different GPU device. |
| 154 | + To recompile them for the correct compatiblity, remove all installed/compiled files, |
| 155 | + and rebuild them with the `TORCH_CUDA_ARCH_LIST` environment variable set properly. |
| 156 | + For example, `export TORCH_CUDA_ARCH_LIST=6.0,7.0` makes it compile for both P100s and V100s. |
| 157 | +</details> |
| 158 | + |
| 159 | +<details> |
| 160 | +<summary> |
| 161 | +Undefined CUDA symbols; cannot open libcudart.so |
| 162 | +</summary> |
| 163 | +<br/> |
| 164 | +The version of NVCC you use to build detectron2 or torchvision does |
| 165 | +not match the version of CUDA you are running with. |
| 166 | +This often happens when using anaconda's CUDA runtime. |
| 167 | + |
| 168 | +Use `python -m detectron2.utils.collect_env` to find out inconsistent CUDA versions. |
| 169 | +In the output of this command, you should expect "Detectron2 CUDA Compiler", "CUDA_HOME", "PyTorch built with - CUDA" |
| 170 | +to contain cuda libraries of the same version. |
| 171 | + |
| 172 | +When they are inconsistent, |
| 173 | +you need to either install a different build of PyTorch (or build by yourself) |
| 174 | +to match your local CUDA installation, or install a different version of CUDA to match PyTorch. |
| 175 | +</details> |
| 176 | + |
| 177 | + |
| 178 | +<details> |
| 179 | +<summary> |
| 180 | +C++ compilation errors from NVCC |
| 181 | +</summary> |
| 182 | + |
| 183 | +1. NVCC version has to match the CUDA version of your PyTorch. |
| 184 | + |
| 185 | +2. NVCC has compatibility issues with certain versions of gcc. You sometimes need a different |
| 186 | + version of gcc. The version used by PyTorch can be found by `print(torch.__config__.show())`. |
| 187 | +</details> |
| 188 | + |
| 189 | + |
| 190 | +<details> |
| 191 | +<summary> |
| 192 | +"ImportError: cannot import name '_C'". |
| 193 | +</summary> |
| 194 | +<br/> |
| 195 | +Please build and install detectron2 following the instructions above. |
| 196 | + |
| 197 | +Or, if you are running code from detectron2's root directory, `cd` to a different one. |
| 198 | +Otherwise you may not import the code that you installed. |
| 199 | +</details> |
| 200 | + |
| 201 | + |
| 202 | +<details> |
| 203 | +<summary> |
| 204 | +Any issue on windows. |
| 205 | +</summary> |
| 206 | +<br/> |
| 207 | + |
| 208 | +Although detectron2 can be installed on windows with some effort (similar to [these](https://github.com/facebookresearch/pytorch3d/blob/master/INSTALL.md#2-install-from-a-local-clone)), |
| 209 | +we do not provide official support for it. |
| 210 | + |
| 211 | +PRs that improves code compatibility on windows are welcome. |
| 212 | +</details> |
| 213 | + |
| 214 | +<details> |
| 215 | +<summary> |
| 216 | +ONNX conversion segfault after some "TraceWarning". |
| 217 | +</summary> |
| 218 | +<br/> |
| 219 | +The ONNX package is compiled with a too old compiler. |
| 220 | + |
| 221 | +Please build and install ONNX from its source code using a compiler |
| 222 | +whose version is closer to what's used by PyTorch (available in `torch.__config__.show()`). |
| 223 | +</details> |
0 commit comments