Installing Python: The safe path
Installing Python is not just downloading a program. You are laying the foundation of your workspace. Remember: macOS and Linux ship with Python built in, but you must not touch the system copy or you can break the OS. We will install a fresh version "next to" it and learn to create isolated "sandboxes" for projects.
Step 1: Get the interpreter
Step 2: Create a virtual environment (venv)
This is the most important step. Instead of polluting the whole system with libraries, we create a .venv folder inside your project. That is your personal "garage".
Commands for your terminal
Why this matters