diff --git a/pages/common/poetry-install.md b/pages/common/poetry-install.md new file mode 100644 index 00000000000000..e270d1ce726339 --- /dev/null +++ b/pages/common/poetry-install.md @@ -0,0 +1,20 @@ +# poetry install + +> Install all dependencies for a Python project as defined in the pyproject.toml file. +> More information: . + +- Install dependencies: + +`poetry install` + +- Skip installing the project itself as a dependency: + +`poetry install --no-root` + +- Install only production dependencies: + +`poetry install --without dev` + +- Install optional dependenciy groups: + +`poetry install --with test,docs`