We are going to use Microsoft Visual Studio Code on our host system to edit our code and interact with our Ubuntu system via SSH. You can run Visual Studio Code on any OS flavor you want.
Download Visual Studio Code - Mac, Linux, Windows
You can download the install from above but you may want to use a package manager. The following examples allow for single command installation.
brew install visual-studio-code
choco install vscode
Start Power Shell and check if the OpenSSH client is installed by running the following command. OpenSSH Client should be install unless you have a older Windows version.
Get-WindowsCapability -Online | ? Name -like 'OpenSSH*'
If it is not installed run the following command in powershell to install it.
Add-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0
sudo snap install --classic code