From 9a076a0b8d58d5fc37216e23da5d7b9ae60cfc34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=8D=9A=E4=BC=9F?= Date: Thu, 27 Feb 2025 16:58:57 +0800 Subject: [PATCH] Update quickstart.md add description on using `uv run` instead of create environment --- docs/source/getting_started/quickstart.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/source/getting_started/quickstart.md b/docs/source/getting_started/quickstart.md index f51856d6eaeb..452bee2385fe 100644 --- a/docs/source/getting_started/quickstart.md +++ b/docs/source/getting_started/quickstart.md @@ -24,6 +24,12 @@ source myenv/bin/activate uv pip install vllm ``` +Another delightful way is to use `uv run` with `--with [dependency]` option, which allows you to run commands such as `vllm serve` without creating an environment: + +```console +uv run --with vllm vllm --help +``` + You can also use [conda](https://docs.conda.io/projects/conda/en/latest/user-guide/getting-started.html) to create and manage Python environments. ```console