Skip to content

Commit edbaadd

Browse files
authored
[Bugfix] Fix requirements paths in install instructions (vllm-project#25827)
Signed-off-by: yingjun-mou <[email protected]>
1 parent 9360d34 commit edbaadd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/getting_started/installation/cpu/s390x.inc.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,22 +46,22 @@ Execute the following commands to build and install vLLM from source.
4646
Please build the following dependencies, `torchvision`, `pyarrow` from source before building vLLM.
4747

4848
```bash
49-
sed -i '/^torch/d' requirements-build.txt # remove torch from requirements-build.txt since we use nightly builds
49+
sed -i '/^torch/d' requirements/build.txt # remove torch from requirements/build.txt since we use nightly builds
5050
uv pip install -v \
5151
--torch-backend auto \
52-
-r requirements-build.txt \
53-
-r requirements-cpu.txt \
52+
-r requirements/build.txt \
53+
-r requirements/cpu.txt \
5454
VLLM_TARGET_DEVICE=cpu python setup.py bdist_wheel && \
5555
uv pip install dist/*.whl
5656
```
5757

5858
??? console "pip"
5959
```bash
60-
sed -i '/^torch/d' requirements-build.txt # remove torch from requirements-build.txt since we use nightly builds
60+
sed -i '/^torch/d' requirements/build.txt # remove torch from requirements/build.txt since we use nightly builds
6161
pip install -v \
6262
--extra-index-url https://download.pytorch.org/whl/nightly/cpu \
63-
-r requirements-build.txt \
64-
-r requirements-cpu.txt \
63+
-r requirements/build.txt \
64+
-r requirements/cpu.txt \
6565
VLLM_TARGET_DEVICE=cpu python setup.py bdist_wheel && \
6666
pip install dist/*.whl
6767
```

0 commit comments

Comments
 (0)