Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ python3 --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
pip install .
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

While pip install . is the correct command for this project, it will fail for users with a Python version between 3.10 and 3.12. The project's pyproject.toml requires Python 3.13 or newer (requires-python = ">=3.13"), but a comment in this code block suggests 3.10+ is sufficient. To prevent installation errors, the Python version mentioned in the guide should be updated to 3.13+.

```

### Still Having Issues?
Expand Down
Loading