A from-scratch lab to get your first coding environment working — editor, a language runtime, the terminal, and Git — so setup friction never blocks your learning again.
Get a working development environment on your own machine — an editor, a language you can run, a working terminal, and Git — so setup friction never again stands between you and learning. Doing this once, properly, at the start of college saves countless hours over four years.
Confirm you have admin rights and a stable internet connection. This lab is entirely local and free.
python --version. You should see a version number. "Command not found" usually means the PATH step was missed.hello.py with print("Hello — my environment works"), then run python hello.py. Seeing your text means the whole chain works end to end.git --version. You don't need to use it yet — just have it ready.Change hello.py to ask for your name with input() and greet you back. Running a program that responds to you is the first real taste of programming. When ready, read Your First Program: Understanding Before Memorizing.
Part of: Incoming Students