[proxy] web.archive.org← back | site home | direct (HTTPS) ↗ | proxy home | ◑ dark◐ light

VSCode Python Extensions

About Erik van Baaren

Now that you have VSCode installed and know how to open it, we need to discuss one final topic before you start creating your Python programs: VSCode Python extensions. You should see VSCode as a basic framework. It can do things like:

About Extensions

It’s the extensions where VSCode really starts to shine. It has extensions for virtually anything you can think of. Through these extensions, VSCode supports specific languages, like Python, but also Java, Kotlin, Javascript, Typescript, etcetera. But it also offers features like:

The power of VSCode is that it can do all of this at once. It’s not just a Python IDE, it’s also a great HTML editor, terrific at writing Javascript, and of course, it’s great with Python code too! And the best of all: you get to decide what you want it to be able to do. So can keep it lean and mean, or install every plugin you ever need. It’s up to your taste!

How to install extensions

To install an extension in VSCode, you can press the large extensions button on the left, as shown in the following screenshot:

Installing extensions in VSCode is easy

It will open the extensions marketplace. In there, enter Python in the search bar to find all extensions that have something to do with Python. You can click the extensions to read more about them and press the install button to install an extension.

Python

You at least want to install the official Python extension for Python programming. It offers many features you’ll need, like IntelliSense, linting, debugging, code navigation, code formatting, refactoring, variable explorer, test explorer, snippets, and more.

Sonarlint

The Sonarlint plugin detects common mistakes and bugs. It detects many security issues and code quality issues and has saved me more than once. I highly recommend it. It’s just for Python, but also supports common languages like Java, JavaScript, TypeScript, PHP, and more.

MagicPython

MagicPython is a cutting-edge version of the default Python syntax highlighter in VSCode. You don’t need it, but I always install it just to be sure.

Visual Studio IntelliCode

The Intellicode extension is a smart, AI-assisted code completion extension built by Microsoft. It supports Python, Java, JavaScript, and TypeScript.