Files
dotfiles/scripts/install-python-packages.md
Ismo Vuorinen df84f1dc0e chore(mise): update configs and add cleanup script documentation
Update tooling configs, shell settings, and editor configurations
as part of the mise migration. Add companion documentation for the
cleanup-old-version-managers script and remove unused fish completions.
2026-03-18 08:43:32 +02:00

17 lines
470 B
Markdown

# install-python-packages
Install Python **libraries** (not tools — those are managed by mise).
## Usage
```bash
scripts/install-python-packages.sh
```
## What it does
1. Checks that `uv` is available; if missing, exits with an error (install `uv` via mise first).
2. Installs each library from the inline `libraries` array using `uv pip install --system --upgrade`.
To add or remove packages, edit the `libraries` array in `scripts/install-python-packages.sh`.