Commit 07f2f0ad authored by Venkat Raman's avatar Venkat Raman Committed by GitHub
Browse files

docs: update README with instructions for build & install in a conda env (#478)


Signed-off-by: default avatarVenkat Raman <vraman2811@gmail.com>
parent 75afd7c4
...@@ -126,6 +126,8 @@ curl localhost:8000/v1/chat/completions -H "Content-Type: application/json" ...@@ -126,6 +126,8 @@ curl localhost:8000/v1/chat/completions -H "Content-Type: application/json"
### Local Development ### Local Development
#### Container
To develop locally, we recommend working inside of the container To develop locally, we recommend working inside of the container
```bash ```bash
...@@ -140,3 +142,27 @@ cp /workspace/target/release/dynamo-run /workspace/deploy/dynamo/sdk/src/dynamo/ ...@@ -140,3 +142,27 @@ cp /workspace/target/release/dynamo-run /workspace/deploy/dynamo/sdk/src/dynamo/
uv pip install -e . uv pip install -e .
``` ```
#### Conda Environment
Alternately, you can use a conda environment
```bash
conda activate <ENV_NAME>
pip install nixl # Or install https://github.com/ai-dynamo/nixl from source
cargo build --release
# To install ai-dynamo-runtime from source
cd lib/bindings/python
pip install .
cd ../../../
pip install .[all]
# To test
docker compose -f deploy/docker-compose.yml up -d
cd examples/llm
dynamo serve graphs.agg:Frontend -f configs/agg.yaml
```
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