When would the -e, --editable
option be useful with pip install
?
For some projects last line in requirements.txt is -e .
. What does it do exactly?
When would the -e, --editable
option be useful with pip install
?
For some projects last line in requirements.txt is -e .
. What does it do exactly?
As the man page says it:
So you would use this when trying to install a package locally, most often in the case when you are developing it on your system. It will just link the package to the original location, basically meaning any changes to the original package would reflect directly in your environment.
Some nuggets around the same here and here.