Skip to content

Installation

This guide will help you install and set up the A2A Registry server.

Prerequisites

  • Python 3.9 or higher
  • pip (Python package installer)

Installation Methods

pip install a2a-registry

From Source

If you want to install from source or contribute to the project:

# Clone the repository
git clone https://github.com/allenday/a2a-registry.git
cd a2a-registry

# Initialize submodules
git submodule update --init --recursive

# Install in development mode
make install-dev

Verify Installation

After installation, verify that the A2A Registry is installed correctly:

a2a-registry --help

You should see the help output with available commands.

Next Steps