Setting up Visual Studio Code for Python

7 minute read comments

Basically, Microsoft’s Visual Studio Code (VS Code) is a general multi-purpose source-code editor. However, it takes only a few steps to turn it into a powerful code editor specifically targeted for both, pure Python code and Jupyter Notebooks.

img

IDE vs. code editor

First of all, what’s the difference between a code editor and an IDE?

An IDE, which stands for Integrated Development Environment, is a fully equipped programming environment, which usually comes with a set of tools for writing code, compiling and executing the code, debugging and version control integration – all combined into a single user interface. IDE can be either single-language-specific or support many or generally all programming languages. Examples for Python IDE are: PyCharm, Spyder, PyDev, KDevelop, Geany or Wing.

A code editor, on the other hand, is basically a text editor, that helps to write the code more efficiently. I.e., unlike default text editors, code editors come along with integrated tools like syntax recognition and highlighting, auto-indentation, auto-completion and brace-matching. A code editor is an essential part of an IDE, but it can also be a stand-alone or a web app. Code editors are usually a bit more lightweight compared to an IDE. This accounts both the technical side – they consume less memory – and coding: especially for beginners, code editors can be a good choice to start with as they are less overwhelming than an IDE, regarding the functionality and the GUI. Examples for Python code editors are: Atom editor1, Sublime Text, Vim, NeoVim, TextWrangler, Kate – or VS Code.

The good thing about VS Code is, that it comes along as such lightweight, multi-language code editor. But since it is highly extensible and customizable, we can extend it with more and more features, so that in the end we may not even notice a difference to a fully equipped IDE. And this is fully up to us, depending on what we currently want or need.

Setting up VS Code for Python

Basically, we need only two extensions to turn VS Code into a powerful Python editor:

If not already done, you also need a Python interpreter on your machine. I additionally recommend to install conda (e.g., via miniconda) as well.

Starting from scratch:

  1. install a Python interpreter and miniconda
  2. install VS Code
  3. open VS Code
  4. go to the Extension menu and search for “Python” and install Microsoft’s official Python extension.
  5. search and install the Python Environment Manager as well.

img The extension menu in VS Code.

The official Python extension

Microsoft’s official Python extension comes – besides the actual Python support – along with IntelliSense, linting2, debugging, code navigation, code formatting, refactoring, variable explorer, test explorer, and more.

img IntelliSense. Source: code.visualstudio.com

The following extensions are automatically co-installed:

The Python Environment Manager extension

Don Jayamanne’s Python Environment Manager extension provides the ability to manage the virtual environments that we have installed on our machine, including those created with conda.

img The Python Environment Manager. To activate an existing environment, simply click on the thumbs-up icon right to the environment’s name.

Python code in VS Code

VS Code is now ready for Python programming. I suggest to work in projects, i.e., create a separate folder (called “workspace” in VS Code, also see below) for each of your Python projects:

img Go to the Explorer menu and click on “Open Folder”, or click in the menu File->Open Folder..., where you can open an existing project folder or create a new one.

Create a new Python script (important: use .py as file extension, so that VS Code recognizes the file correctly) and write your program. E.g.:

img A Python script in VS Code.

By clicking on the “run” button in the upper right corner of the editor, the script will be executed in VS Code’s main terminal.

VS Code also supports code cells:

img Code cells in VS Code.

Code cells can be run individually by clicking on “Run cell” above each cell, or all at once by right-clicking on the script in the Explorer and selecting “Run Current File in Interactive Window” or by right-clicking in the script itself and selecting “Run All Cells”:

img Execute an entire script in the Interactive Window.

The cells will be executed in VS Code’s Interactive Window for Python, which provides interactive Python support based on the IPython Kernel for Jupyter (IPykernel). The first time you run code in an Interactive Window you will be asked to additionally install the corresponding ipykernel package (if not already done):

img Prompt for installing the ipykernel package for running the Interactive Window.

Jupyter Notebooks in VS Code

Creating Jupyter Notebooks in VS Code is also pretty easy. Just create an empty notebook file (add the extension .ipynb to it) and then write your code:

img Jupyter Notebooks in VS Code.

The notebook support of VS Code is extremely good and you might not notice any difference to the notebook browser version. VS Code comes with a built-in notebook variable explorer: just click on Variable in the top menu of the notebook.

Working with conda and virtual environments

As usual, I highly recommend to work with virtual environments. We can create them, e.g., with conda, which can be used and executed from within VS Code’s main terminal. Just type in there:

conda create -n my_test_venv -y python=3.9

You can activate that environment via

conda activate my_test_venv

or by selecting it in the Python Environment Manager. You can also change the virtual environment by clicking on the currently selected Python interpreter in the bottom status bar of the VS Code main window. Once activated, the chosen environment will be used in both, the terminal and the Interactive Window.

Troubleshooting on Windows

While conda seems to be globally available on a Unix-based system (macOS, Linux) after its installation, on Windows machines it can become a little nightmare to get it run in VS Code. Fortunately, we can fix it:

Common error #1: conda is not available in Windows’ PowerShell

When you try to verify your conda installation, e.g., by typing

conda --v

in Windows’ PowerShell or in the VS Code main terminal, you might receive an error message telling you, that conda wouldn’t be available. To fix this:

  1. open the Anaconda Powershell Prompt from the Start menu, and
  2. execute conda init powershell.

This makes conda enables in the PowerShell.

Common error #2: UnauthorizedAccess

If you receive an error message like

...
+ CategoryInfo          : SecurityError: (:) [], PSSecurityException
+ FullyQualifiedErrorId : UnauthorizedAccess

while trying to execute a conda command from within VS Code’s main terminal, proceed as follows:

  1. open a PowerShell, and
  2. execute Set-ExecutionPolicy RemoteSigned.

This should fix the problem.

Common error #3: conda is not recognized as an internal or external command

If you receive an error message like

conda is not recognized as an internal or external command

which can happen when you install miniconda instead of Anaconda, you need to add the miniconda path to the environmental variables of Windows. To do so, please follow the instructions of this YouTube tutorial:

  1. Search for the “Anaconda prompt” app in the windows search bar and open it.
  2. Type in the “Anaconda prompt” the following command and hit enter: where conda. This will show you three paths to the conda executable which we now need to add to the environmental variables.
  3. Search for “environmental variables” in the windows search bar and open the corresponding search result. A new settings window opens. In the “Advanced” tab, click on the “Environmental Variables” button. In the “User variables for …” list, select the entry Path and press the “Edit” button. Now, add, one after another, the three conda paths you’ve seen in step 2. The paths can look like this: “C:\ProgrammData\minidonca3\Library\bin", “C:\ProgrammData\minidonca3\Scripts" and “C:\ProgrammData\minidonca3\condabin". When you’re done, press “Ok” and close all windows.

Working in projects

Among others, the advantage of working in separate project folders, each associated with its own virtual environment, is, that we can open, manage and run them in separate windows in VS Code. Simply select File->New Window and open the desired project folder from within the newly opened VS Code window.

img To projects opened side-by-side in separate window instances in VS Code.

What’s next?

In a follow-up post I will present some further useful VS Code extensions. Stay tuned.

Footnotes

  1. GitHub announced that they will sunset the Atom editor on December 15, 2022. 

  2. According the VS Code documentation: “Linting highlights syntactical and stylistic problems in your Python source code, which often helps you identify and correct subtle programming errors or unconventional coding practices that can lead to errors. For example, linting detects use of an uninitialized or undefined variable, calls to undefined functions, missing parentheses, and even more subtle issues such as attempting to redefine built-in types or functions. Linting is thus distinct from Formatting because linting analyzes how the code runs and detects errors whereas formatting only restructures how code appears.” 


Comments

Comment on this post by publicly replying to this Mastodon post using a Mastodon or other ActivityPub/Fediverse account.

Comments on this website are based on a Mastodon-powered comment system. Learn more about it here.

There are no known comments, yet. Be the first to write a reply.