Skip to content

Installation

Get set up with the Dreadnode CLI and Python SDK in minutes.

Install with one command:

Terminal window
curl -fsSL https://dreadnode.io/install.sh | bash

The installer chooses the best available method (uv or pipx) and installs the dn CLI plus Python SDK.

  • Python 3.11+

The Python package installs the SDK and the dn (alias: dreadnode) CLI for interactive workflows and slash commands.

Terminal window
pip install dreadnode

Or with uv:

Terminal window
uv tool install dreadnode

Verify the installation:

Terminal window
dn --help

The TUI will notify you when a new version is available. Run /update inside the TUI or press F9 to upgrade.

You can also update manually:

Terminal window
# If installed via uv
uv tool upgrade dreadnode
# If installed via pipx
pipx upgrade dreadnode
# Or re-run the install script
curl -fsSL https://dreadnode.io/install.sh | bash
  • CLI: dn / dreadnode for interactive workflows and authentication.
  • SDK: dreadnode for building and running Python agents.