From 327b4a8067c055003feca8de3793590ab0cc2bf2 Mon Sep 17 00:00:00 2001
From: pangjm <pangjiangmiao@gmail.com>
Date: Sat, 30 Mar 2019 15:46:32 +0800
Subject: [PATCH] instruction for code mofication

---
 INSTALL.md | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/INSTALL.md b/INSTALL.md
index 387e85a..32e4d00 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -62,13 +62,16 @@ Just for reference, [Here](https://gist.github.com/hellock/bf23cd7348c727d69d486
 a script for setting up mmdetection with conda.
 
 ### Notice
-You need to rerun `python(3) setup.py install` once you made any modifications to mmdetection.
-As alternative approaches, you can also insert following code to the main file
+You can run `python(3) setup.py develop` or `pip install -e .` to install mmdetection if you want to make modifications to it frequently.
+
+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
-import os, sys
-sys.path.insert(0, os.path.join(os.getcwd(), '../'))
+import os.path as osp
+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
 export PYTHONPATH=`pwd`:$PYTHONPATH
 ```
-- 
GitLab