Thank you for sharing!
I think that the code is under rapid development. It is nice if it has a develop build option using soft-link so users do not have to rebuild after making some modifications.
You can just run pip install -e . or python setup.py develop to install it with a soft link.
Since mmcv.__version__ will record the git commit hash and be saved in checkpoints, it may be a good choice to run python setup.py install after each update. It's up to users to adopt the develop mode or not.
Thank you for your helpful information!
Most helpful comment
You can just run
pip install -e .orpython setup.py developto install it with a soft link.Since
mmcv.__version__will record the git commit hash and be saved in checkpoints, it may be a good choice to runpython setup.py installafter each update. It's up to users to adopt the develop mode or not.