Skip to content

Instantly share code, notes, and snippets.

@yujp
Last active July 14, 2021 07:56
Show Gist options
  • Save yujp/67210d88fcfba5cd26f1032c84f5c20c to your computer and use it in GitHub Desktop.
Save yujp/67210d88fcfba5cd26f1032c84f5c20c to your computer and use it in GitHub Desktop.

Installing Golang on Windows10

Open PowerShell and execute the code below:

cd C:\data\tools
Remove-Item go.bk -Recurse
Rename-Item go go.bk
curl "https://golang.org/dl/go1.16.6.windows-amd64.zip" -o go.zip -L
Expand-Archive -Path go.zip -DestinationPath .
Remove-Item go.zip
Remove-Item go.bk -Recurse
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment