Update quickstart.md (#13958)

This commit is contained in:
王博伟 2025-02-28 00:05:11 +08:00 committed by GitHub
parent 7f0be2aa24
commit 512d77d582
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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