Backend Package Management

How to use uv to install/uninstall/update python packages Use when this capability is needed.

tomevault-io Updated

File contents

Python Package Management

We use uv to install, uninstall and update python packages. We also use ./backend/pyproject.toml to configure uv.

Install dependencies

cd ./backend
uv add <package_name>
# or
uv add --dev <package_name>

Uninstall dependencies

cd ./backend
uv remove <package_name>
# or
uv remove --dev <package_name>

Update dependencies

cd ./backend
uv sync --upgrade

Converted and distributed by TomeVault — claim your Tome and manage your conversions.

tomevault-io/skills-registry/tree/main/jpmolinamatute--arch-stats--backend-package-management commit 0d705dfbce

Frequently asked questions

npx skillmds@latest add tomevault-io/backend-package-management