Unverified Commit e3df305b authored by Anant Sharma's avatar Anant Sharma Committed by GitHub
Browse files

docs: remove hardcoded version in quick start (#3290)


Signed-off-by: default avatarAnant Sharma <anants@nvidia.com>
parent a01b7992
...@@ -10,14 +10,16 @@ Get started with Dynamo locally in just a few commands: ...@@ -10,14 +10,16 @@ Get started with Dynamo locally in just a few commands:
# Create virtual environment and install Dynamo # Create virtual environment and install Dynamo
uv venv venv uv venv venv
source venv/bin/activate 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** **2. Start etcd/NATS**
.. code-block:: bash .. code-block:: bash
# Fetch and start etcd and NATS using Docker Compose # 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 docker compose -f docker-compose.yml up -d
**3. Run Dynamo** **3. Run Dynamo**
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment