Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ As AI agents become more prevalent, their ability to interoperate is crucial for
- πŸ“š **Explore the Documentation:** Visit the [Agent2Agent Protocol Documentation Site](https://google.github.io/A2A/) for a complete overview, the full protocol specification, tutorials, and guides.
- πŸ“ **View the Specification:** [A2A Protocol Specification](https://google.github.io/A2A/specification/)
- 🐍 Use the [A2A Python SDK](https://github.com/google/a2a-python)
- `pip install a2a-sdk`
- 🎬 Use our [samples](/samples) to see A2A in action
- [Multi-Agent Web App](/demo/README.md)
- CLI ([Python](/samples/python/hosts/cli/README.md), [JS](/samples/js/README.md))
Expand Down
6 changes: 1 addition & 5 deletions docs/tutorials/python/2-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,10 @@ We recommend using a virtual environment for Python projects. The A2A Python SDK

2. **Install the A2A SDK and its dependencies:**

The `a2a-python` repository contains the SDK source code. To make it and its dependencies available in your environment, run:

```bash
pip install -e '.[dev]'
pip install --upgrade a2a-sdk
```

This command installs the SDK in "editable" mode (`-e`), meaning changes to the SDK source code are immediately available. It also installs development dependencies specified in `pyproject.toml`.

## Verify Installation

After installation, you should be able to import the `a2a` package in a Python interpreter:
Expand Down
Loading