Notes for Linux and WSL users

Notes for Linux and WSL users#

Warning

If you are using macOS, you can skip this page and proceed directly to the next topic.

Most Linux distributions provide tools for installing software system-wide. For example, Debian and Debian-based distributions (such as Ubuntu and Mint) use the apt command-line tool. While other Linux distributions use different tools, we will focus here on apt.

After a fresh installation of Ubuntu (such as with WSL), it is important to upgrade the system packages by running the following commands in a terminal:

sudo apt update
sudo apt upgrade

Additional packages can then be installed using commands that begin with sudo apt install. For example, we recommend installing the curl package (which is often used in tutorials to download files from the web and is not included by default) with:

sudo apt install curl