From b3be53bb46f188b7964d164bfdbdf5c262203701 Mon Sep 17 00:00:00 2001 From: samypr100 <3933065+samypr100@users.noreply.github.com> Date: Wed, 21 Feb 2024 21:13:07 -0500 Subject: [PATCH] [docs] Update README.md to include extras example (#1806) ## Summary There was no example of to hint support for extras in the README.md. I added one example in the install section that is used in the uv tests. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9296246f5..4e8294c72 100644 --- a/README.md +++ b/README.md @@ -76,6 +76,7 @@ uv pip install flask # Install Flask. uv pip install -r requirements.txt # Install from a requirements.txt file. uv pip install -e . # Install the current project in editable mode. uv pip install "package @ ." # Install the current project from disk +uv pip install "flask[dotenv]" # Install Flask with "dotenv" extra. ``` To generate a set of locked dependencies from an input file: