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

# Installation

> Install Tangent.

## Overview

Tangent ships as a single executable, `tangent`.

## Installation

<Tabs>
  <Tab title="macOS & Linux">
    <CodeGroup>
      ```bash curl theme={null}
      curl --proto '=https' --tlsv1.2 -LsSf https://github.com/Santiago-Labs/tangent/releases/download/latest/tangent-cli-installer.sh | sh
      ```
    </CodeGroup>
  </Tab>

  <Tab title="Homebrew">
    <CodeGroup>
      ```bash sh theme={null}
      brew tap telophasehq/telophase
      brew install tangent-cli
      ```
    </CodeGroup>
  </Tab>

  <Tab title="Docker">
    <CodeGroup>
      ```bash docker theme={null}
      docker pull ghcr.io/telophasehq/tangent-toolchain
      docker run --rm --init ghcr.io/telophasehq/tangent-toolchain help
      ```
    </CodeGroup>
  </Tab>

  <Tab title="Cargo">
    <CodeGroup>
      ```bash cargo theme={null}
      cargo install --git https://github.com/telophasehq/tangent tangent-cli
      ```
    </CodeGroup>
  </Tab>
</Tabs>
