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

# Install Tamery

> Download the Tamery desktop app for macOS, Windows, or Linux, or install the CLI via npm.

Tamery comes in three forms — web, desktop, and CLI. All share the same account and cloud-synced connections.

<Note>
  The desktop app is recommended for most users. It runs a local proxy, so localhost and
  private-network databases work without extra setup.
</Note>

## Web

No install. Open [tamery.app](https://tamery.app), sign in, and connect.

<Tip>
  To reach local databases from the web app, run `tamery proxy` (see the [CLI](/cli/overview)) and
  point a connection at it.
</Tip>

## Desktop

Download from [tamery.app/download](https://tamery.app/download).

<Tabs>
  <Tab title="macOS">
    **Homebrew (recommended)**

    ```bash theme={null}
    brew install --cask tamery
    ```

    **Direct download**

    1. Download the `.dmg` (Apple Silicon or Intel) from [tamery.app/download](https://tamery.app/download).
    2. Open it and drag **Tamery** to **Applications**.
    3. Launch and sign in.

    Requires macOS 12 Monterey or later.
  </Tab>

  <Tab title="Windows">
    1. Download the `.exe` from [tamery.app/download](https://tamery.app/download).
    2. Run the installer.
    3. Launch and sign in.

    Requires Windows 10 or 11 (64-bit).
  </Tab>

  <Tab title="Linux">
    **Arch (AUR)**

    ```bash theme={null}
    yay -S tamery-bin
    # or
    paru -S tamery-bin
    ```

    Then run `tamery-app`.

    **Debian / Ubuntu**

    ```bash theme={null}
    sudo dpkg -i tamery_*.deb
    ```

    **Fedora / RHEL / openSUSE**

    ```bash theme={null}
    sudo dnf install ./tamery_*.rpm
    ```

    **AppImage**

    ```bash theme={null}
    chmod +x Tamery-*.AppImage
    ./Tamery-*.AppImage
    ```

    Download packages from [tamery.app/download](https://tamery.app/download).
  </Tab>
</Tabs>

## CLI

Requires Node.js 20+.

```bash theme={null}
npm install -g tamery
```

Authenticate:

```bash theme={null}
tamery login
```

This opens the browser sign-in flow and saves your session locally. See the [CLI reference](/cli/commands) for all commands.
