This project is set up to use uv, the new package
manager for Python. uv replaces traditional use of pyenv, pipx, poetry, pip,
etc. This is a quick cheat sheet on that:
On macOS or Linux, if you don't have uv installed, a quick way to install it:
curl -LsSf https://astral.sh/uv/install.sh | shFor macOS, you prefer brew you can install or upgrade uv with:
brew update
brew install uvSee uv's docs for more installation methods and platforms.
Now you can use uv to install a current Python environment:
uv python install 3.13 # Or pick another version.