From 4da805e25f0f28fb6249c501917eda164e7a5e70 Mon Sep 17 00:00:00 2001 From: Simon Mo Date: Fri, 19 Jul 2024 12:14:11 -0700 Subject: [PATCH] [Docs] Update docs for wheel location (#6580) --- docs/source/getting_started/installation.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/source/getting_started/installation.rst b/docs/source/getting_started/installation.rst index a9dfac8ff5af8..fe041e03a1b6c 100644 --- a/docs/source/getting_started/installation.rst +++ b/docs/source/getting_started/installation.rst @@ -49,11 +49,10 @@ You can install vLLM using pip: .. code-block:: console $ export VLLM_VERSION=0.5.2 # vLLM's main branch version is currently set to latest released tag - $ export PYTHON_VERSION=310 - $ pip install https://vllm-wheels.s3.us-west-2.amazonaws.com/nightly/vllm-${VLLM_VERSION}-cp${PYTHON_VERSION}-cp${PYTHON_VERSION}-manylinux1_x86_64.whl + $ pip install https://vllm-wheels.s3.us-west-2.amazonaws.com/nightly/vllm-${VLLM_VERSION}-cp38-abi3-manylinux1_x86_64.whl $ # You can also access a specific commit $ # export VLLM_COMMIT=... - $ # pip install https://vllm-wheels.s3.us-west-2.amazonaws.com/${VLLM_COMMIT}/vllm-${VLLM_VERSION}-cp${PYTHON_VERSION}-cp${PYTHON_VERSION}-manylinux1_x86_64.whl + $ # pip install https://vllm-wheels.s3.us-west-2.amazonaws.com/${VLLM_COMMIT}/vllm-${VLLM_VERSION}-cp38-abi3-manylinux1_x86_64.whl .. _build_from_source: