fix(curriculum): clarify what terminal is in Python installation lesson (#62501)

Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
This commit is contained in:
Alifa Ara
2025-10-14 15:38:33 -04:00
committed by GitHub
parent 00ca2b1c7e
commit 8460ccf15c
@@ -26,6 +26,8 @@ You can verify the installation by opening up your terminal and running `python
You can also open the Python interpreter by running `python` or `python3` in the terminal.
A <dfn>terminal</dfn> is a text-based interface that lets you interact with your computer by typing commands. Each operating system comes with a default terminal app. On macOS, you can use the Terminal app. On Windows, you can use Command Prompt or PowerShell. On Linux, each desktop environment has its own default terminal app, like GNOME Terminal or Konsole.
Note that, on some older macOS and Linux systems, `python` can be reserved for Python 2, while `python3` is for Python 3 specifically. If you run `python --version` and see a version of Python 2 like `Python 2.7.18`, then it's possible that your OS relies on some software that was written in the older version of Python. If that's the case, you should use `python3` to run your Python code going forward.
To install Python on Windows, follow these steps: