Hi,
On Wednesday, August 29, 2018 11:35:12 AM CEST Ivan Kanakarakis wrote:
While on the project repository in a clean
environment, do
pip install -e .
or
python ./setup.py develop
This will install the package in virtualenv by keeping a symlink to
the repository source.
I discoverd something extra (which may be common knowledge but was surprised
to see it working):
If you do a pip install -e (which means editable I found out by now) on a git+
url, pip will first clone the repo in ./src/<repo> and install it editable from
there. So, two steps in one!
Cheers!
Martin