From ede6e620194c92d4daf9fa8a29d3a7d777b85e01 Mon Sep 17 00:00:00 2001 From: Mick Grove Date: Sat, 7 Feb 2026 09:12:50 -0800 Subject: [PATCH] Fixed PyPi github action --- README.md | 3 +++ docs/INSTALLATION.md | 9 +++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 975a716..b4d471f 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docs/INSTALLATION.md b/docs/INSTALLATION.md index b4b072b..a7e1d32 100644 --- a/docs/INSTALLATION.md +++ b/docs/INSTALLATION.md @@ -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 ```