# Quick reference

> Quick reference - One-page reference for common DataRobot CLI commands and paths.

This Markdown file sits beside the HTML page at the same path (with a `.md` suffix). It summarizes the topic and lists links for tools and LLM context.

Companion generated at `2026-05-06T18:17:09.551262+00:00` (UTC).

## Primary page

- [Quick reference](https://docs.datarobot.com/en/docs/agentic-ai/cli/quick-reference.html): Full documentation for this topic (HTML).

## Sections on this page

- [Quick reference](https://docs.datarobot.com/en/docs/agentic-ai/cli/quick-reference.html#quick-reference): In-page section heading.
- [Installation](https://docs.datarobot.com/en/docs/agentic-ai/cli/quick-reference.html#installation): In-page section heading.
- [Authentication](https://docs.datarobot.com/en/docs/agentic-ai/cli/quick-reference.html#authentication): In-page section heading.
- [Templates](https://docs.datarobot.com/en/docs/agentic-ai/cli/quick-reference.html#templates): In-page section heading.
- [Running applications](https://docs.datarobot.com/en/docs/agentic-ai/cli/quick-reference.html#running-applications): In-page section heading.
- [Environment](https://docs.datarobot.com/en/docs/agentic-ai/cli/quick-reference.html#environment): In-page section heading.
- [CLI self-management](https://docs.datarobot.com/en/docs/agentic-ai/cli/quick-reference.html#cli-self-management): In-page section heading.
- [Global flags](https://docs.datarobot.com/en/docs/agentic-ai/cli/quick-reference.html#global-flags): In-page section heading.
- [Config and state paths](https://docs.datarobot.com/en/docs/agentic-ai/cli/quick-reference.html#config-and-state-paths): In-page section heading.
- [See also](https://docs.datarobot.com/en/docs/agentic-ai/cli/quick-reference.html#see-also): In-page section heading.

## Related documentation

- [Agentic AI](https://docs.datarobot.com/en/docs/agentic-ai/index.html): Linked from this page.
- [CLI](https://docs.datarobot.com/en/docs/agentic-ai/cli/index.html): Linked from this page.
- [Getting started](https://docs.datarobot.com/en/docs/agentic-ai/cli/getting-started.html): Linked from this page.
- [Command reference](https://docs.datarobot.com/en/docs/agentic-ai/cli/commands/index.html): Linked from this page.
- [Configuration](https://docs.datarobot.com/en/docs/agentic-ai/cli/configuration.html): Linked from this page.
- [Troubleshooting](https://docs.datarobot.com/en/docs/agentic-ai/agent-assist/troubleshooting.html): Linked from this page.

## Documentation content

## Quick reference

One-page reference for the most common DataRobot CLI ( `dr`) commands and paths.

## Installation

```
# macOS/Linux
curl https://cli.datarobot.com/install | sh

# Windows (PowerShell)
irm https://cli.datarobot.com/winstall | iex
```

## Authentication

```
dr auth set-url https://app.datarobot.com   # or 1=US, 2=EU, 3=JP
dr auth login
dr auth logout
```

## Templates

```
dr templates list
dr templates setup
dr templates clone <name> [directory]
dr templates status
```

## Running applications

```
dr start                    # Quickstart or setup wizard
dr task list                # List tasks
dr run dev                  # Run dev task
dr run build
dr run test
```

## Environment

```
dr dotenv setup
dr dotenv edit
dr dotenv validate
dr dotenv update
```

## CLI self-management

```
dr --version
dr self version
dr self update
dr self config
dr self completion bash | sudo tee /etc/bash_completion.d/dr
```

## Global flags

| Flag | Description |
| --- | --- |
| -v, --verbose | Verbose output |
| --debug | Debug output (creates dr-tui-debug.log) |
| --skip-auth | Skip authentication (advanced) |
| --force-interactive | Force setup wizard to run again |
| -h, --help | Help |

## Config and state paths

| Platform | Config file |
| --- | --- |
| Linux/macOS | ~/.config/datarobot/drconfig.yaml |
| Windows | %USERPROFILE%\.config\datarobot\drconfig.yaml |

| Location | Purpose |
| --- | --- |
| .datarobot/cli/state.yaml | Template state (per template directory) |

## See also

- Getting started
- Command reference
- Configuration
- Troubleshooting
