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

# Install

<Tabs>
  <Tab title="macOS">
    ```bash theme={"dark"}
    # Using Homebrew
    brew install enkryptify/enkryptify/enkryptify

    # Using the shell script
    curl -fsSL https://raw.githubusercontent.com/Enkryptify/cli/refs/heads/main/install.sh | bash
    ```
  </Tab>

  <Tab title="Windows">
    ```bash theme={"dark"}
    # Using Scoop
    scoop bucket add enkryptify https://github.com/Enkryptify/scoop-enkryptify.git
    scoop install enkryptify
    ```
  </Tab>

  <Tab title="Debian / Ubuntu">
    ```bash theme={"dark"}
    sudo apt-get update && sudo apt-get install -y curl

    # We currently only support installing via the shell script
    curl -fsSL https://raw.githubusercontent.com/Enkryptify/cli/refs/heads/main/install.sh | bash
    ```
  </Tab>

  <Tab title="RedHat / CentOS">
    ```bash theme={"dark"}
    sudo yum install -y curl

    # We currently only support installing via the shell script
    curl -fsSL https://raw.githubusercontent.com/Enkryptify/cli/refs/heads/main/install.sh | bash
    ```
  </Tab>

  <Tab title="Alpine">
    ```bash theme={"dark"}
    sudo apk add -y curl

    # We currently only support installing via the shell script
    curl -fsSL https://raw.githubusercontent.com/Enkryptify/cli/refs/heads/main/install.sh | bash
    ```
  </Tab>

  <Tab title="Arch Linux">
    ```bash theme={"dark"}
    sudo pacman -S curl

    # We currently only support installing via the shell script
    curl -fsSL https://raw.githubusercontent.com/Enkryptify/cli/refs/heads/main/install.sh | bash
    ```
  </Tab>

  <Tab title="Shell script">
    ```bash theme={"dark"}
    curl -fsSL https://raw.githubusercontent.com/Enkryptify/cli/refs/heads/main/install.sh | bash
    ```
  </Tab>
</Tabs>

Now verify the installation:

```bash theme={"dark"}
ek --version
```

You can update the CLI to the latest version by running:

```bash theme={"dark"}
ek upgrade
```

This auto-detects your install method and upgrades accordingly. See [Commands](/cli/commands#upgrade) for details.

## Usage

To get started with the Enkryptify CLI, refer to the [Quickstart](/cli/quickstart) guide.

## Commands

For more information on commands, refer to the [Commands](/cli/commands) page.
