For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Digest
  • Getting Started
    • Quickstart
    • Installation
    • Support Matrix
    • Feature Matrix
    • Examples
  • Kubernetes Deployment
  • User Guides
    • Tool Calling
    • Multimodality Support
    • Finding Best Initial Configs
    • Dynamo Benchmarking Guide
    • Tuning Disaggregated Performance
    • Writing Python Workers in Dynamo
    • Glossary
  • Components
    • Router
  • Design Docs
    • Overall Architecture
    • Architecture Flow
    • Disaggregated Serving
    • Distributed Runtime
NVIDIANVIDIA
Developer-friendly docs for your API
Privacy Policy | Your Privacy Choices | Terms of Service | Accessibility | Corporate Policies | Product Security | Contact

Copyright © 2026, NVIDIA Corporation.

LogoLogoDocumentation
Digest
On this page
  • Pip (PyPI)
  • Pip from source
  • Docker
Getting Started

Installation

||View as Markdown|
Previous

Quickstart

Next

Dynamo Support Matrix

Pip (PyPI)

Install a pre-built wheel from PyPI.

$# Create a virtual environment and activate it
$uv venv venv
$source venv/bin/activate
$
$# Install Dynamo from PyPI (choose one backend extra)
$uv pip install "ai-dynamo[sglang]" # or [vllm], [trtllm]

Pip from source

Install directly from a local checkout for development.

$# Clone the repository
$git clone https://github.com/ai-dynamo/dynamo.git
$cd dynamo
$
$# Create a virtual environment and activate it
$uv venv venv
$source venv/bin/activate
$uv pip install ".[sglang]" # or [vllm], [trtllm]

Docker

Pull and run prebuilt images from NVIDIA NGC (nvcr.io).

$# Run a container (mount your workspace if needed)
$docker run --rm -it \
> --gpus all \
> --network host \
> nvcr.io/nvidia/ai-dynamo/sglang-runtime:0.8.1 # or vllm, tensorrtllm

Replace 0.8.1 with your desired version tag. Check the GitHub releases for available versions.