Environment Setup
7/7/25Less than 1 minuteaiagentic-aiaiagentic-aienvironment setup
The Complete Agentic AI Engineering Course
Environment Setup
We will be using the GitHub Repo to setup our environment. And make sure you have the following installed:
- Git
- Cursor
- UV package manager
- LLM - either API key of OpenAI or Anthropic or OpenRouter, or open-source LLM running locally using ollama.
Windows
Make sure you have the Windows PowerShell installed.
git clone https://github.com/ed-donner/agents.git
cd agents
# Install dependencies from pyproject.toml
uv sync
Create a .env
file in the root of the project and add your API key.
OPENAI_API_KEY=sk-proj-1234567890
Mac & Linux
For myself, I git clone the repo to ~/Documents/Git_Repo/agents
.
git clone https://github.com/ed-donner/agents.git
cd agents
# Install dependencies from pyproject.toml
uv sync
Create a .env
file in the root of the project and add your API key.
OPENAI_API_KEY=sk-proj-1234567890
sth
Windows
Mac & Linux