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

# Installation

> Get same installed on your machine

## Nix

### Flake Input (Preferred)

Add `same` to your `flake.nix` to ensure your team uses the exact same version:

```nix theme={null}
{
  inputs.same.url = "github:traiproject/same";

  outputs = { self, nixpkgs, same }: {
    devShells.x86_64-linux.default = nixpkgs.legacyPackages.x86_64-linux.mkShell {
      buildInputs = [ same.packages.x86_64-linux.default ];
    };
  };
}
```

### Nix Profile

Install directly into your profile:

```bash theme={null}
nix profile install github:traiproject/same
```

## Homebrew

Install via our official tap:

<CodeGroup>
  ```bash Formula theme={null}
  brew install traiproject/tap/same
  ```

  ```bash Tap & Install theme={null}
  brew tap traiproject/tap
  brew install same
  ```
</CodeGroup>

## Install from Release

Binaries and packages are available on the
[Releases](https://github.com/traiproject/same/releases) page.

> **Note:** Binary archives (`tar.gz`) are available for macOS (Intel/Apple
> Silicon) and Linux (amd64/arm64).

### Debian / Ubuntu

<CodeGroup>
  ```bash v0.1.0 theme={null}
  curl -LO https://github.com/traiproject/same/releases/download/v0.1.0/same_0.1.0_linux_amd64.deb
  sudo dpkg -i same_0.1.0_linux_amd64.deb
  ```
</CodeGroup>

### Fedora / RHEL

<CodeGroup>
  ```bash v0.1.0 theme={null}
  curl -LO https://github.com/traiproject/same/releases/download/v0.1.0/same_0.1.0_linux_amd64.rpm
  sudo rpm -i same_0.1.0_linux_amd64.rpm
  ```
</CodeGroup>

### Alpine Linux

<CodeGroup>
  ```bash v0.1.0 theme={null}
  curl -LO https://github.com/traiproject/same/releases/download/v0.1.0/same_0.1.0_linux_amd64.apk
  apk add same_0.1.0_linux_amd64.apk
  ```
</CodeGroup>
