-
-
Save bearpaw/b523b7c73754625cce20cc27b05f582a to your computer and use it in GitHub Desktop.
Setup mmdetection with conda
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
conda create -n open-mmlab python=3.7 -y | |
source activate open-mmlab | |
conda install -c pytorch pytorch torchvision -y | |
conda install cython -y | |
git clone https://github.com/open-mmlab/mmdetection.git | |
cd mmdetection | |
./compile.sh | |
pip install -e . # "pip install ." for installation mode | |
mkdir data | |
ln -s $COCO_ROOT data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment