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

# Installation

> Install the Supermodel CLI

A single Go binary, no runtime dependencies.

## curl

```bash theme={null}
curl -fsSL https://supermodeltools.com/install.sh | sh
```

## npm

```bash theme={null}
npm install -g @supermodeltools/cli
```

## From source

```bash theme={null}
git clone https://github.com/supermodeltools/cli
cd cli
go build -o supermodel .
```

## Update

```bash theme={null}
supermodel update            # install latest release
supermodel update --check    # check without installing
```

## Uninstall

```bash theme={null}
supermodel logout
rm -rf ~/.supermodel
rm "$(command -v supermodel)"    # or remove the binary from your PATH manually
```
