"vscode:/vscode.git/clone" did not exist on "3125d7995020f4ae1b7777e41af6c3a6e714cb1c"
Unverified Commit 26e722f9 authored by jonoillar's avatar jonoillar Committed by GitHub
Browse files

[DOC][BugFix] Specfiy build dependency installation (#34513)


Signed-off-by: default avatarJon OILLARBURU <jon.oillarburu@multiversecomputing.com>
Co-authored-by: default avatarJon OILLARBURU <jon.oillarburu@multiversecomputing.com>
parent 2c619e5e
...@@ -49,7 +49,13 @@ If you are developing vLLM's Python and CUDA/C++ code, install Pytorch first: ...@@ -49,7 +49,13 @@ If you are developing vLLM's Python and CUDA/C++ code, install Pytorch first:
uv pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu129 uv pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu129
``` ```
then install vLLM using: Then install the necessary build dependencies from `requirements/build.txt`, skipping `torch` as it was installed in the previous step:
```bash
grep -v '^torch==' requirements/build.txt | uv pip install -r -
```
Finally install vLLM using:
```bash ```bash
uv pip install -e . --no-build-isolation uv pip install -e . --no-build-isolation
......
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