Don't call the venv vllm (#17810)

Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
This commit is contained in:
Harry Mellor 2025-05-08 05:06:39 +01:00 committed by GitHub
parent a8238bbdb0
commit 66ab3b13c9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,6 +14,6 @@ Or you can create a new Python environment using [uv](https://docs.astral.sh/uv/
```console
# (Recommended) Create a new uv environment. Use `--seed` to install `pip` and `setuptools` in the environment.
uv venv vllm --python 3.12 --seed
source vllm/bin/activate
uv venv --python 3.12 --seed
source .venv/bin/activate
```