Update goodpractices.rst

This commit is contained in:
Skylar Downes 2016-09-15 16:45:35 -07:00 committed by GitHub
parent 330a2f6784
commit 34117be98b
1 changed files with 2 additions and 1 deletions

View File

@ -64,7 +64,8 @@ Important notes relating to both schemes:
- **make sure that "mypkg" is importable**, for example by typing once::
pip install -e . # install package using setup.py in editable mode
# similar to running python setup.py develop
# similar to running `python setup.py develop` or
# `conda develop`
This installs your package with a symlink to your development code
instead of placing the code directly in the install directory.