Skip to content

Python

Dependency

Simply add or install the pyaket package in your project as a development dependency1:

uv add pyaket --dev
pip install pyaket
poetry add pyaket --dev
pdm add pyaket --dev

Suggestions

  • Pin the latest version as in pyaket==x.y.z for extra stability
  • Install with pyaket[all] groups for cross-compilation

Managed

Following the concepts of uv • tools, you can use pyaket independently from a project with:

🔴🟡🟢 Command
1
2
3
4
5
# Choose any version you want
uv tool install pyaket[all]@latest

# Upgrade anytime
uv tool upgrade pyaket

And then run it with:

🔴🟡🟢 Command
uv tool run pyaket (...)

  1. Users should not need pyaket installed to run your application, only during development and packaging.