Skip to content

Managing Dependencies

To manage dependencies and for package distribution we use poetry (replaces pip).

Add dependencies

To install a dependency use

poetry add dependency

and commit the updated pyproject.toml to git.

For more advanced dependency management see examples in pyproject.toml or have a look at the poetry documentation.

Install dependencies added by others

When other contributors added dependencies to pyproject.toml, you can install them via

poetry lock
poetry install