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 ```