Skip to content

Commit ce95d60

Browse files
authored
docs: Update Tutorial and README to use A2A Python SDK from PyPi (#597)
1 parent 44bdc09 commit ce95d60

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ As AI agents become more prevalent, their ability to interoperate is crucial for
4040
- πŸ“š **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.
4141
- πŸ“ **View the Specification:** [A2A Protocol Specification](https://google.github.io/A2A/specification/)
4242
- 🐍 Use the [A2A Python SDK](https://github.com/google/a2a-python)
43+
- `pip install a2a-sdk`
4344
- 🎬 Use our [samples](/samples) to see A2A in action
4445
- [Multi-Agent Web App](/demo/README.md)
4546
- CLI ([Python](/samples/python/hosts/cli/README.md), [JS](/samples/js/README.md))

β€Ždocs/tutorials/python/2-setup.mdβ€Ž

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,10 @@ We recommend using a virtual environment for Python projects. The A2A Python SDK
4040

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

43-
The `a2a-python` repository contains the SDK source code. To make it and its dependencies available in your environment, run:
44-
4543
```bash
46-
pip install -e '.[dev]'
44+
pip install --upgrade a2a-sdk
4745
```
4846

49-
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`.
50-
5147
## Verify Installation
5248

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

0 commit comments

Comments
Β (0)