I'm just getting started with Python.
This document talks about installing an interpreter, but I couldn't find the steps.
Since you installed Jupyter earlier, there's a good chance Python is already on your system. If you have a Python version installed on your computer, this usually automatically means that an interpreter is also installed. You can check by running:
On Windows (Command Prompt or PowerShell):
python --version
If Python is installed, this will display the version number.
Additionally, you can check your installed Python versions in Visual Studio:
Python Interpreter: This is the core program that runs Python code (e.g., python.exe on Windows).
Python Environment: This is a workspace that contains different packages, dependencies, and settings, but it still requires an interpreter to function. (e.g., System-wide Python installation, Virtual Environments, Conda Environments)
Follow these steps: