From deb6c1c6b4469984eb2a032099081f7f9e4ec8a8 Mon Sep 17 00:00:00 2001 From: Harry Mellor <19981378+hmellor@users.noreply.github.com> Date: Tue, 11 Feb 2025 18:02:46 +0000 Subject: [PATCH] [Doc] Improve OpenVINO installation doc (#13102) Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com> --- .../installation/ai_accelerator/openvino.inc.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/source/getting_started/installation/ai_accelerator/openvino.inc.md b/docs/source/getting_started/installation/ai_accelerator/openvino.inc.md index 112e8d4d9b256..4f25252d9daff 100644 --- a/docs/source/getting_started/installation/ai_accelerator/openvino.inc.md +++ b/docs/source/getting_started/installation/ai_accelerator/openvino.inc.md @@ -19,17 +19,19 @@ Currently, there are no pre-built OpenVINO wheels. ### 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 sudo apt-get update -y 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 -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 ```