-
Notifications
You must be signed in to change notification settings - Fork 2.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
Option to install only dependencies #1525
Comments
Hello @berislavlopac, Starting from https://github.com/sdispater/poetry#install
|
This is a duplicate of #800, which has already been addressed. The requested functionality is already available in the 1.0 beta releases via: @berislavlopac: Would you please close this issue in order to reduce clutter in Poetry's issue tracker? Thank you! |
Sure! |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Feature Request
When running
poetry install
, it installs all the dependencies and then adds the project itself, in the "editable" mode. Sometimes it would be preferable to install just the dependencies, and let the user install the project itself manually, or not at all (for example, when building a docker image installing the dependencies first gets cached, so future builds -- if there was just a code change -- are much faster; see https://pythonspeed.com/articles/pipenv-docker/).So I'd like to propose an option for the
install
command -- let's say--deps-only
-- that would skip that last step of installing the project itself.The text was updated successfully, but these errors were encountered: