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 --versionExample:
Python 3.14.2brew install pythonsudo apt update
sudo apt install python3 python3-pipDownload Python:
https://www.python.org/downloads/
- Enable β "Add Python to PATH"
Verify installation:
python --versionuv 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 | shpowershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"Verify installation:
uv --versionCreate a separate folder for the workshop:
mkdir -p ai-agents-adk && cd ai-agents-adkUsing default Python:
uv venvOr specify a Python version:
uv venv --python 3.14This creates:
.venv/source .venv/bin/activate.venv\Scripts\activate.bat.venv\Scripts\Activate.ps1uv pip install google-adk --no-cacheRun:
python --version
uv --versionIf everything works, you are ready π
See you at the workshop π
Yes i am ready .