You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The workaround to installing deps only seems to be pip install -U -r requirements.txt -e ., but then you still have to pip uninstall -y foo and sed -i '/foo/d' easy-install.pth afterwards.
It'd be nice with an option to install deps only, like pip install --deps-only -U .
The text was updated successfully, but these errors were encountered:
Closing this, I don't think that the use case as I understand it warrants adding an option to pip. You might try using ```pip-compile`` from pip-tools to manage your dependencies instead.
The workaround to installing deps only seems to be
pip install -U -r requirements.txt -e .
, but then you still have topip uninstall -y foo
andsed -i '/foo/d' easy-install.pth
afterwards.It'd be nice with an option to install deps only, like
pip install --deps-only -U .
The text was updated successfully, but these errors were encountered: