How to install Python and verify it works?
Answer
•Download from python.org or install via package manager.
•Check: python --version (or python3 --version).
•Check pip: python -m pip --version.
•Update pip: python -m pip install -U pip.
•Run REPL: python.
Was this answer helpful?