Reputation: 2523
I'm just getting started with Python.
This document talks about installing an interpreter, but I couldn't find the steps.
Upvotes: 0
Views: 15
Reputation: 11
For python I would suggest Visual Studio Code. But it is possible to use it Visual Studio 2022. To check python open terminal and type python --version.
Installation is possible in Tools --> Get Tools and Features --> Python development.
Interpreter is the actual runtime, that executes the code and the environment is the one that collects the installed packages and dependencies. You can create an environment in the Solution Explorer --> Python --> Python Environments.
Upvotes: 1