Posts

Showing posts from May, 2020

Getting Started with Python 3 in Visual Studio Code

Image
Prerequisquisites To successfully complete this tutorial, you need to first setup your Python development environment. Specifically, this tutorial requires: VS Code VS Code Python Extension Python 3 Install a Python interpreter Which interpreter you use is dependent on your specific needs, but some guidance is provided below In Windows, install Python from python.org . You can typically use Download Python button that appears first on the page to download the lastest version. For additional information about using Python on Windows, see Using Python on Windows at Python.org Verify the Python Installation To verify that you’re installed Python successfully on your machine, run one of the following command (depending own your operating system): In Windows, open a command prompt and run the following command: py -3 --version If the installation was successful, the output windows should show the version of Python that you installed. Install Visual Studio Code and the ...