File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
docs/getting_started/installation/cpu Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff 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 ```
You can’t perform that action at this time.
0 commit comments