Tooling reference

Python setup

Get or confirm a working Python 3, the one thing every build needs.

Last reviewed: 2026. The commands here are examples; the exact command and output depend on your operating system and setup. When something differs, prefer the official source for your tool.

What Python is for here

The builds are small Python programs. You need a working Python 3 to run them. That is the only reason this page exists.

Check whether you already have it

In a terminal, run one of these:

python3 --version
python --version

If either prints a version starting with 3 (for example Python 3.12.2), you already have what the builds need and can stop here.

Getting Python, by platform

Install from an official source rather than a random download. The concept is the same everywhere; the route differs.

Confirm success

Open a new terminal and run python3 --version. A 3.x version means you are set.

Common traps