From 3c9b4b48ed820f77890b5255db2ddbadd5e211c6 Mon Sep 17 00:00:00 2001 From: Salvatore Testa Date: Sun, 8 Jun 2025 13:59:31 -0700 Subject: [PATCH] Update macOS install guide with Homebrew instructions (#2823) --- documentation/docs/getting-started/installation.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/documentation/docs/getting-started/installation.md b/documentation/docs/getting-started/installation.md index 25970aaa53..48924fbad8 100644 --- a/documentation/docs/getting-started/installation.md +++ b/documentation/docs/getting-started/installation.md @@ -49,6 +49,9 @@ import DesktopInstallButtons from '@site/src/components/DesktopInstallButtons'; + Install Goose directly from the browser or with [Homebrew](https://brew.sh/). + +

Option 1: Install via Download script

Run the following command to install the latest version of Goose on macOS: ```sh @@ -68,6 +71,12 @@ import DesktopInstallButtons from '@site/src/components/DesktopInstallButtons'; goose update ``` ::: + +

Option 2: Install via Homebrew

+ Homebrew downloads the [a precompiled CLI tool](https://github.com/Homebrew/homebrew-core/blob/master/Formula/b/block-goose-cli.rb) and can take care of updates. + ```bash + brew install block-goose-cli + ```