-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
install --deps-only #2171
Labels
auto-locked
Outdated issues that have been locked by automation
Comments
This'd work well in concert with a solution to #536 in order to be able to upgrade-install deps, but ignore-install the current project. |
bikeshed --only-dependencies (which cabal uses) |
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. |
lock
bot
added
the
auto-locked
Outdated issues that have been locked by automation
label
Jun 3, 2019
Adding a cross reference to #11440 |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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: