WSL
WSL stands for Windows Subsystem for Linux. It installs a Linux distribution within your Windows machine so you can keep using Windows and experience the joys of a UNIX environment (with reduced performance)!
WSL is awesome. Install it by running the following in Powershell:
wsl.exe --installView your distributions with
wsl --list --verboseUnregister a distribution using
wsl --unregister distributionUpdate the current distribution with
wsl --updateInstall C/C++ essentials with
sudo apt install gccsudo apt install g++sudo apt install makeInstall the WSL extension in VSCode for better IDE support.
Open code in VSCode using
code .