Your current environment
I followed the official v0.18.0 GPU installation docs for pre-built wheels.
The docs say that vLLM provides binaries compiled with CUDA 12.8 / 12.9 / 13.0, and give the following URL pattern for release wheels:
vllm-${VLLM_VERSION}+cu${CUDA_VERSION}-cp38-abi3-manylinux_2_35_${CPU_ARCH}.whl
For v0.18.0 on x86_64 with CUDA 12.8, this resolves to:
https://github.com/vllm-project/vllm/releases/download/v0.18.0/vllm-0.18.0+cu128-cp38-abi3-manylinux_2_35_x86_64.whl
However, this URL returns HTTP 404.
Command used
uv pip install \
"https://github.com/vllm-project/vllm/releases/download/v${VLLM_VERSION}/vllm-${VLLM_VERSION}+cu128-cp38-abi3-manylinux_2_35_${CPU_ARCH}.whl" \
--extra-index-url https://download.pytorch.org/whl/cu128
<img width="1367" height="212" alt="Image" src="https://github.com/user-attachments/assets/f3520447-bcc0-4ea6-a8fa-2f18aac84552" />
### How you are installing vllm
uv pip install \
> "https://github.com/vllm-project/vllm/releases/download/v${VLLM_VERSION}/vllm-${VLLM_VERSION}+cu128-cp38-abi3-manylinux_2_35_${CPU_ARCH}.whl" \
> --extra-index-url https://download.pytorch.org/whl/cu128
### Before submitting a new issue...
- [x] Make sure you already searched for relevant issues, and asked the chatbot living at the bottom right corner of the [documentation page](https://docs.vllm.ai/en/latest/), which can answer lots of frequently asked questions.
Your current environment
I followed the official v0.18.0 GPU installation docs for pre-built wheels.
The docs say that vLLM provides binaries compiled with CUDA 12.8 / 12.9 / 13.0, and give the following URL pattern for release wheels:
vllm-${VLLM_VERSION}+cu${CUDA_VERSION}-cp38-abi3-manylinux_2_35_${CPU_ARCH}.whl
For v0.18.0 on x86_64 with CUDA 12.8, this resolves to:
https://github.com/vllm-project/vllm/releases/download/v0.18.0/vllm-0.18.0+cu128-cp38-abi3-manylinux_2_35_x86_64.whl
However, this URL returns HTTP 404.
Command used