From 66ab3b13c9a0ebf71ce2d445f8620018ba2e8443 Mon Sep 17 00:00:00 2001 From: Harry Mellor <19981378+hmellor@users.noreply.github.com> Date: Thu, 8 May 2025 05:06:39 +0100 Subject: [PATCH] Don't call the venv `vllm` (#17810) Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com> --- .../getting_started/installation/python_env_setup.inc.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/getting_started/installation/python_env_setup.inc.md b/docs/source/getting_started/installation/python_env_setup.inc.md index a03d35030fe8..00b61ea5c826 100644 --- a/docs/source/getting_started/installation/python_env_setup.inc.md +++ b/docs/source/getting_started/installation/python_env_setup.inc.md @@ -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 ```