Did poetry removed --no dev flag in its latest version #10096
Answered
by
finswimmer
vishal-kalbi
asked this question in
Q&A
-
I am encountering the error: "The option '--no-dev' does not exist" while building the Docker image. The Poetry version being used in the build process is 2.0.1 |
Beta Was this translation helpful? Give feedback.
Answered by
finswimmer
Jan 23, 2025
Replies: 1 comment
-
Yes, it was removed. fin swimmer |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
abn
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, it was removed.
--no-dev
was deprecated for a long time. Use--without <group-name>
to exclude certain groups from the install (can be defined multiple times). Or if you only want to install the runtime dependencies and the project itself run:poetry install --only main
.fin swimmer