pip install --editable does not support --target #3246
Labels
auto-locked
Outdated issues that have been locked by automation
C: target
pip install's --target option's behaviour handling
type: bug
A confirmed bug or unintended behavior
For a plugin system I'm attempting to
pip install --editable
into a local path of my choice. For regular plugins I am installing withpip install --target
and that works just fine, but for local development I want to do the same with egg links.The target directly gets added to the pkg resources working set as well as as a site directory by myself, so I do not care about any of that stuff. All I need is --target to not fail. Right now it gives a bad internal error that
--home
is not supported as this is only allowed toinstall
but not todevelop
which it invokes.As a super shitty work around I do something like this right now:
And then later on install the plugins' dependencies manually.
The text was updated successfully, but these errors were encountered: