A complete, beginner-friendly checklist of everything you need installed and set up to follow the Agentic AI course. Almost all of it is free. Work through it once, and you're ready to build real agents.
colab.research.google.com and start typing. The fastest way to begin.python.org. (Colab already has Python built in, so you can skip this at first.)github.com. The course encourages putting your first agent project here.claude.ai. Use the free chat for the early lessons and the DRONA tutor. For building agents in code, get an API key from console.anthropic.com (pay-as-you-go, very low cost for learning).chatgpt.com, with API keys from platform.openai.com. A great alternative or second option. Most course code works with either Claude or OpenAI.ollama.com) let you run smaller models on your own computer at no cost โ useful for practice without API charges. Optional and slightly more advanced.pip install ...). The course teaches from scratch first, then these frameworks.anthropic for Claude or openai for OpenAI. This alone is enough to build your first agents from scratch, exactly as the course does in its early phases.pip install langchain langgraph.pip install crewai.pip install sentence-transformers.pip install chromadb. Perfect for learning RAG.requests library โ free, to let tools call any web API. pip install requests.pip install anthropic (or openai) + an API key.