I am imagining something like
pip install -e Path/to/Repo@Branch
The repository is on my local machine so that I can edit it and don't need to reinstall it over and over.
How can I do it? Thank you ahead for your answering.
Someone proposes the solution of "env/bin/pip install git+file:///path/to/your/git/repo" in this question pip install a local git repository This doesn't work because I want to install in "DEVELOP" mode. Thank you.