cd /news/ai-agents/building-autonomous-ai-agents-with-a… · home topics ai-agents article
[ARTICLE · art-23089] src=gist.github.com pub= topic=ai-agents verified=true sentiment=↑ positive

Building Autonomous AI Agents with ADK — Prerequisites

A developer has outlined the prerequisites for building autonomous AI agents using the Google ADK, requiring a laptop, Python 3.12+, and the `google-adk` package. The setup also mandates installing the `uv` package manager for virtual environments and dependency management, with specific commands provided for macOS, Linux, and Windows. Attendees must verify their Python and uv installations before the workshop to avoid delays.

read1 min publishedMay 23, 2026

Please complete this setup before the workshop so we can start building AI Agents immediately without setup delays.

  • Laptop/Desktop (Mac, Linux, or Windows)
  • Python installed
  • google-adk Installed

You can use any modern Python version (recommended: Python 3.12+).

Check your version:

python3 --version

Example:

Python 3.14.2
brew install python
sudo apt update
sudo apt install python3 python3-pip

Download Python:

https://www.python.org/downloads/

⚠️ Important during installation:

  • Enable ✅ "Add Python to PATH"

Verify installation:

python --version

uv

is a modern Python package manager used for:

  • Virtual environments
  • Dependency management
  • Faster package installation

It replaces:

  • pip
  • venv
  • virtualenv

Docs:

curl -LsSf https://astral.sh/uv/install.sh | sh
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

Verify installation:

uv --version

Create a separate folder for the workshop:

mkdir -p ai-agents-adk && cd ai-agents-adk

Using default Python:

uv venv

Or specify a Python version:

uv venv --python 3.14

This creates:

.venv/
source .venv/bin/activate
.venv\Scripts\activate.bat
.venv\Scripts\Activate.ps1
uv pip install google-adk --no-cache

Run:

python --version
uv --version

If everything works, you are ready 🚀

See you at the workshop 🚀

── more in #ai-agents 4 stories · sorted by recency
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/building-autonomous-…] indexed:0 read:1min 2026-05-23 ·