The "Engine" and the "Time Machine."
The language of AI, data science, and automation. Even if you don't write Python directly, your agents need it installed to run scripts and tools.
Visit python.org/downloads and get the latest version (3.12+). The site auto-detects your OS.
Open your terminal (PowerShell on Windows, Terminal on macOS) and type:
python --version
You should see something like Python 3.12.x. If you get an error, restart your terminal and try again.
Version control that tracks every change you make. Think of it as "save checkpoints" for your entire project. Essential for collaboration and deployment.
The installer has many options. Just keep clicking "Next" (the defaults are fine for our purposes).
In your terminal, type:
git --version
If both commands return version numbers, you are cleared for launch. ✅
python --version returns 3.12 or higher.git --version returns any version number.