mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-03-18 21:06:06 +00:00
17 lines
459 B
Markdown
17 lines
459 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, installs it via the official installer.
|
|
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`.
|