Introducing Visual Studio Code (commonly called VS Code)
VS Code is a great choice for an IDE in general. It is free and relatively lightweight for your computer. It supports so many languages and frameworks. You won’t have to worry about frameworks yet; that is what we’ll use when we make more complex applications, such as web apps, later. It consists of a basic application that can be extended with many (free) plugins, called extensions. With the right extensions, VS Code is a really great tool for writing Python. Let’s walk you through how to install it.
First, we need to download it.
- Visit code.visualstudio.com
- Download the version for your operating system.
- Now that it’s downloaded, it’s time to install VS Code:
- Run the installer and follow the prompts.
- After it’s installed, open VS Code.
We’ll install the Python extensions later – that’s our last step. But let’...