[Doc] Source building add clone step (#14086)

Signed-off-by: qux-bbb <1147635419@qq.com>
This commit is contained in:
qux-bbb 2025-03-02 18:59:50 +08:00 committed by GitHub
parent 82fbeae92b
commit bc6ccb9878
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,7 +6,14 @@ sudo apt-get install -y gcc-12 g++-12 libnuma-dev
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 10 --slave /usr/bin/g++ g++ /usr/bin/g++-12
```
Second, install Python packages for vLLM CPU backend building:
Second, clone vLLM project:
```console
git clone https://github.com/vllm-project/vllm.git vllm_source
cd vllm_source
```
Third, install Python packages for vLLM CPU backend building:
```console
pip install --upgrade pip