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.
46
46
Please build the following dependencies, ` torchvision ` , ` pyarrow ` from source before building vLLM.
47
47
48
48
``` 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
50
50
uv pip install -v \
51
51
--torch-backend auto \
52
- -r requirements- build.txt \
53
- -r requirements- cpu.txt \
52
+ -r requirements/ build.txt \
53
+ -r requirements/ cpu.txt \
54
54
VLLM_TARGET_DEVICE=cpu python setup.py bdist_wheel && \
55
55
uv pip install dist/* .whl
56
56
```
57
57
58
58
??? console "pip"
59
59
```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
61
61
pip install -v \
62
62
--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 \
65
65
VLLM_TARGET_DEVICE=cpu python setup.py bdist_wheel && \
66
66
pip install dist/* .whl
67
67
```
You can’t perform that action at this time.
0 commit comments