Fixed PyPi github action

This commit is contained in:
Mick Grove 2026-02-07 09:12:50 -08:00
commit ede6e62019
2 changed files with 10 additions and 2 deletions

View file

@ -106,6 +106,9 @@ kingfisher scan /path/to/scan --access-map --view-report
# Homebrew (Linux/macOS)
brew install kingfisher
# Or install from PyPI with uv
uv tool install kingfisher-bin
# Or use the install script (Linux/macOS)
curl -sSL https://raw.githubusercontent.com/mongodb/kingfisher/main/scripts/install-kingfisher.sh | bash

View file

@ -381,11 +381,16 @@ docker run --rm \
## PyPI Wheels
If you want to run Kingfisher from PyPI, install the `kingfisher-bin` package
and use the `kingfisher` command it exposes:
If you want to run Kingfisher from PyPI, you can install it using `uv`, `pip`, or run it directly with `uvx`:
```bash
# Install with uv (recommended)
uv tool install kingfisher-bin
# Or install with pip
pip install kingfisher-bin
# Then run Kingfisher
kingfisher --help
```