Unverified Commit deb6c1c6 authored by Harry Mellor's avatar Harry Mellor Committed by GitHub
Browse files

[Doc] Improve OpenVINO installation doc (#13102)


Signed-off-by: default avatarHarry Mellor <19981378+hmellor@users.noreply.github.com>
parent 565c1efa
...@@ -19,17 +19,19 @@ Currently, there are no pre-built OpenVINO wheels. ...@@ -19,17 +19,19 @@ Currently, there are no pre-built OpenVINO wheels.
### Build wheel from source ### Build wheel from source
First, install Python. For example, on Ubuntu 22.04, you can run: First, install Python and ensure you lave the latest pip. For example, on Ubuntu 22.04, you can run:
```console ```console
sudo apt-get update -y sudo apt-get update -y
sudo apt-get install python3 sudo apt-get install python3
pip install --upgrade pip
``` ```
Second, install prerequisites vLLM OpenVINO backend installation: Second, clone vLLM and install prerequisites for the vLLM OpenVINO backend installation:
```console ```console
pip install --upgrade pip git clone https://github.com/vllm-project/vllm.git
cd vllm
pip install -r requirements-build.txt --extra-index-url https://download.pytorch.org/whl/cpu pip install -r requirements-build.txt --extra-index-url https://download.pytorch.org/whl/cpu
``` ```
......
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