Manage Python projects with uv and Poetry

Python

Use modern Python tooling for dependency and environment management.

  1. 1

    Create project with uv

    uv init
  2. 2

    Add dependency with uv

    uv add <package>
  3. 3

    Install with Poetry

    poetry install
  4. 4

    Run tests in Poetry env

    poetry run pytest

Related commands: uv add, poetry install, poetry run