diff --git a/docs/_includes/quick_start_local.rst b/docs/_includes/quick_start_local.rst index 2f3ebcb01047..05b6e63b5f44 100644 --- a/docs/_includes/quick_start_local.rst +++ b/docs/_includes/quick_start_local.rst @@ -10,14 +10,16 @@ Get started with Dynamo locally in just a few commands: # Create virtual environment and install Dynamo uv venv venv source venv/bin/activate - uv pip install "ai-dynamo[sglang]==0.4.1" # or [vllm], [trtllm] + # Use prerelease flag to install RC versions of flashinfer and/or other dependencies + uv pip install --prerelease=allow "ai-dynamo[sglang]" # or [vllm], [trtllm] **2. Start etcd/NATS** .. code-block:: bash # Fetch and start etcd and NATS using Docker Compose - curl -fsSL -o docker-compose.yml https://raw.githubusercontent.com/ai-dynamo/dynamo/release/0.4.1/deploy/docker-compose.yml + VERSION=$(uv pip show ai-dynamo | grep Version | cut -d' ' -f2) + curl -fsSL -o docker-compose.yml https://raw.githubusercontent.com/ai-dynamo/dynamo/refs/tags/v${VERSION}/deploy/docker-compose.yml docker compose -f docker-compose.yml up -d **3. Run Dynamo**