From 1a18311d94759cb2199f6c53d4617de4ab7b9cd0 Mon Sep 17 00:00:00 2001 From: Eugene Mwangi Date: Mon, 23 Jun 2025 11:38:16 +0300 Subject: [PATCH] docs(install): Add pkg installation option with `uvx` Include an option to install Hatch with uv's tool interface for the uv community and ecosystem. --- docs/install.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/install.md b/docs/install.md index eb2eaeb6b..9fe48bedf 100644 --- a/docs/install.md +++ b/docs/install.md @@ -111,6 +111,14 @@ pip install hatch pipx install hatch ``` +## uvx + +Similar to [pipx](#pipx), [uvx](https://docs.astral.sh/uv/concepts/tools/) allows for the global installation of Python applications in isolated environments managed by [uv](https://docs.astral.sh/uv/). + +``` +uv tool install hatch@latest +``` + ## Homebrew See the [formula](https://formulae.brew.sh/formula/hatch) for more details.