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

# Installation

> Install the Pragma CLI

## Requirements

* Python 3.13+

## Install

<Tabs>
  <Tab title="uvx">
    ```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
    uvx pragmatiks-cli
    ```

    Or install globally:

    ```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
    uv tool install pragmatiks-cli
    ```
  </Tab>

  <Tab title="pipx">
    ```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
    pipx install pragmatiks-cli
    ```
  </Tab>

  <Tab title="pip">
    ```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
    pip install pragmatiks-cli
    ```
  </Tab>
</Tabs>

## Verify

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
pragma --version
```

## Shell Completion

<Tabs>
  <Tab title="Bash">
    ```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
    eval "$(pragma --show-completion bash)"
    ```
  </Tab>

  <Tab title="Zsh">
    ```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
    eval "$(pragma --show-completion zsh)"
    ```
  </Tab>

  <Tab title="Fish">
    ```fish theme={"theme":{"light":"min-light","dark":"min-dark"}}
    pragma --show-completion fish | source
    ```
  </Tab>
</Tabs>

## Next Steps

<Card title="Authentication" icon="key" href="/cli/authentication">
  Log in to the platform.
</Card>
