How to Install Golang on WSL/WSL2
If you need to install Golang on WSL under Windows 10 or higher, you can follow these few steps. First remove any old versions lying around sudo rm -rf /usr/local/go* && sudo rm -rf /usr/local/go Determine the latest Go version Go to https://golang.org/dl/ and find out what the latest version is. At the time of writing this, Go is on version 1.16. Install Go Make sure to replace 1.16 below with the updated version as required....