Skip to content

Python

Dependency

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

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

After syncing dependencies, simply run pyaket or import it in build scripts!

Suggestions

  • Pin the version 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@latest

# Upgrade anytime
uv tool upgrade pyaket

And then run it with:

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

  1. Users shouldn't need pyaket installed to run your application, only during development and packaging.