From 7699fc261f2a37a1dda8fbeddae34795993e5de6 Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Sun, 25 May 2025 13:06:19 -0400 Subject: [PATCH] docs: Quickstart Intel Installation method (#2662) --- documentation/docs/quickstart.md | 107 ++++++++++++++++++------------- 1 file changed, 63 insertions(+), 44 deletions(-) diff --git a/documentation/docs/quickstart.md b/documentation/docs/quickstart.md index 554a682a..dd545ce3 100644 --- a/documentation/docs/quickstart.md +++ b/documentation/docs/quickstart.md @@ -9,6 +9,7 @@ import { IconDownload } from "@site/src/components/icons/download"; import SupportedEnvironments from '@site/src/components/SupportedEnvironments'; import RateLimits from '@site/src/components/RateLimits'; import YouTubeShortEmbed from '@site/src/components/YouTubeShortEmbed'; +import DesktopInstallButtons from '@site/src/components/DesktopInstallButtons'; # Goose in 5 minutes @@ -21,54 +22,72 @@ Goose is an open source AI agent that supercharges your software development by ## Install Goose -You can use Goose via CLI or Desktop application. + + + Choose to install Goose on CLI and/or Desktop: - - -
- Quickstart Video Demo - -
- To install the latest version of Goose, click the **button** below: -
- - - download goose desktop for macOS - -
-
- 1. Unzip the downloaded `Goose.zip` file. - 2. Run the executable file to launch the Goose desktop application. -
+ + + +
+ 1. Unzip the downloaded zip file. + 2. Run the executable file to launch the Goose Desktop application. +
+
+ + Run the following command to install Goose: + + ```sh + curl -fsSL https://github.com/block/goose/releases/download/stable/download_cli.sh | bash + ``` + +
- -
- Quickstart Video Demo - -
- Run the following command to install the latest version of Goose: + + + + Desktop version is currently unavailable for Linux. + + + Run the following command to install the Goose CLI on Linux: - ```sh - curl -fsSL https://github.com/block/goose/releases/download/stable/download_cli.sh | bash - ``` + ```sh + curl -fsSL https://github.com/block/goose/releases/download/stable/download_cli.sh | bash + ``` + + + + + + + + Desktop version is currently unavailable for Windows. + + + There isn't native installation support for Windows, however you can run Goose using WSL (Windows Subsystem for Linux). + + 1. Open [PowerShell](https://learn.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-windows) as Administrator and install WSL and the default Ubuntu distribution: + + ```bash + wsl --install + ``` + + 2. Restart your computer if prompted. + + 3. Run the Goose installation script: + ```bash + curl -fsSL https://github.com/block/goose/releases/download/stable/download_cli.sh | bash + ``` + :::tip + If you encounter any issues on download, you might need to install `bzip2` to extract the downloaded file: + + ```bash + sudo apt update && sudo apt install bzip2 -y + ``` + ::: + +