> ## Documentation Index
> Fetch the complete documentation index at: https://docs.westyx.cloud/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation

> Install the Westyx CLI on Linux, macOS, or Windows.

## Linux

<Tabs>
  <Tab title="Debian / Ubuntu">
    ```bash theme={null}
    # amd64
    curl -fsSL https://get.westyx.dev/cli/0.5.0/westyx-cli_0.5.0_linux_amd64.deb -o westyx-cli.deb
    sudo dpkg -i westyx-cli.deb
    ```

    ```bash theme={null}
    # arm64
    curl -fsSL https://get.westyx.dev/cli/0.5.0/westyx-cli_0.5.0_linux_arm64.deb -o westyx-cli.deb
    sudo dpkg -i westyx-cli.deb
    ```

    Supported distributions: Debian 11+, Ubuntu 20.04+, Linux Mint, Pop!\_OS.
  </Tab>

  <Tab title="RHEL / Fedora">
    ```bash theme={null}
    # amd64
    curl -fsSL https://get.westyx.dev/cli/0.5.0/westyx-cli_0.5.0_linux_amd64.rpm -o westyx-cli.rpm
    sudo rpm -i westyx-cli.rpm
    ```

    ```bash theme={null}
    # arm64
    curl -fsSL https://get.westyx.dev/cli/0.5.0/westyx-cli_0.5.0_linux_arm64.rpm -o westyx-cli.rpm
    sudo rpm -i westyx-cli.rpm
    ```

    Supported distributions: RHEL 8+, Fedora 36+, Rocky Linux, AlmaLinux, CentOS Stream.
  </Tab>

  <Tab title="Binary tarball">
    Use this on any Linux distribution without a package manager.

    ```bash theme={null}
    # amd64
    curl -fsSL https://get.westyx.dev/cli/0.5.0/westyx-linux-amd64.tar.gz | tar -xz
    sudo mv westyx /usr/local/bin/
    ```

    ```bash theme={null}
    # arm64
    curl -fsSL https://get.westyx.dev/cli/0.5.0/westyx-linux-arm64.tar.gz | tar -xz
    sudo mv westyx /usr/local/bin/
    ```
  </Tab>
</Tabs>

## macOS

```bash theme={null}
# Intel (amd64)
curl -fsSL https://get.westyx.dev/cli/0.5.0/westyx-darwin-amd64.tar.gz | tar -xz
sudo mv westyx /usr/local/bin/
```

```bash theme={null}
# Apple Silicon (arm64)
curl -fsSL https://get.westyx.dev/cli/0.5.0/westyx-darwin-arm64.tar.gz | tar -xz
sudo mv westyx /usr/local/bin/
```

<Info>
  If macOS blocks the binary with "unverified developer" - right-click `westyx` in Finder and
  choose **Open**, or run `xattr -d com.apple.quarantine /usr/local/bin/westyx`.
</Info>

## Windows

Download the zip for your architecture and extract `westyx.exe` to a folder in your `PATH`
(e.g. `C:\Users\<you>\bin`).

<CardGroup cols={2}>
  <Card title="Windows amd64" icon="windows" href="https://get.westyx.dev/cli/0.5.0/westyx-windows-amd64.zip">
    westyx-windows-amd64.zip
  </Card>

  <Card title="Windows arm64" icon="windows" href="https://get.westyx.dev/cli/0.5.0/westyx-windows-arm64.zip">
    westyx-windows-arm64.zip
  </Card>
</CardGroup>

## Verify the installation

```bash theme={null}
westyx version
# westyx v0.5.0 (linux/amd64)
```

## Verify checksums (optional)

All release artifacts are signed with GPG. To verify before installing:

```bash theme={null}
curl -fsSL https://get.westyx.dev/cli/0.5.0/westyx_0.5.0_checksums.txt -o checksums.txt
curl -fsSL https://get.westyx.dev/cli/0.5.0/westyx_0.5.0_checksums.txt.sig -o checksums.txt.sig

curl -fsSL https://get.westyx.dev/cli/westyx.gpg | gpg --import
gpg --verify checksums.txt.sig checksums.txt
sha256sum -c checksums.txt --ignore-missing
```

## Next steps

<Card title="Getting started" icon="bolt" href="/cli/getting-started">
  Log in and run your first command.
</Card>
