Commit 327b4a80 authored by pangjm's avatar pangjm
Browse files

instruction for code mofication

parent 3e563974
...@@ -62,13 +62,16 @@ Just for reference, [Here](https://gist.github.com/hellock/bf23cd7348c727d69d486 ...@@ -62,13 +62,16 @@ Just for reference, [Here](https://gist.github.com/hellock/bf23cd7348c727d69d486
a script for setting up mmdetection with conda. a script for setting up mmdetection with conda.
### Notice ### Notice
You need to rerun `python(3) setup.py install` once you made any modifications to mmdetection. You can run `python(3) setup.py develop` or `pip install -e .` to install mmdetection if you want to make modifications to it frequently.
As alternative approaches, you can also insert following code to the main file
If there are more than one mmdetection on your machine, and you want to use them alternatively.
Please insert the following code to the main file
```python ```python
import os, sys import os.path as osp
sys.path.insert(0, os.path.join(os.getcwd(), '../')) import sys
sys.path.insert(0, osp.join(osp.dirname(osp.abspath(__file__)), '../'))
``` ```
or run following command in the terminal of corresponding folder. or run the following command in the terminal of corresponding folder.
```shell ```shell
export PYTHONPATH=`pwd`:$PYTHONPATH export PYTHONPATH=`pwd`:$PYTHONPATH
``` ```
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment