From e23eda0c84d980df9b31dc4f8895f738b12f92fa Mon Sep 17 00:00:00 2001 From: Hamza-nabil Date: Mon, 5 Jan 2026 13:07:16 +0100 Subject: [PATCH] docs: Update Quick start documentation instructions to use uv. --- docs/quickstart.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/quickstart.md b/docs/quickstart.md index 9ae3e076..e8b21740 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -243,10 +243,13 @@ The demo uses Python for the A2A agent. If you encounter Python errors: # Make sure Python 3.10+ is installed python3 --version +# Make sure uv is installed +uv --version + # The demo should auto-install dependencies via the npm script # If not, manually install them: cd ../../agent/adk/restaurant_finder -pip install -r requirements.txt +uv sync ``` ### Still Having Issues?