Golang : Fix go.exe is not compatible with the version of Windows you're running
Problem: You just installed the default binary download of Golang for Windows and when you attempt to execute go.exe
binary you get this error message:
This version of C:\Go\bin\go.exe is not compatible with the version of Windows you're running. Check your computer's system information and then contact the software publisher.
What's going on?
Solution:
Be default, the Golang installer binary that gets automatically downloaded is for Windows 64-bit version and the Windows version that you're using is 32-bit. To fix this problem, simply head over to https://golang.org/dl/ and select the 32-bit installer version with windows-386
tags such as go1.7.1.windows-386.msi
instead of go1.7.1.windows-amd64.msi
See also : Uninstall Go from Mac
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+33.2k Delete a directory in Go
+9.2k Golang : How to use Gorilla webtoolkit context package properly
+15.4k Golang : package is not in GOROOT during compilation
+5.2k Golang : Display packages names during compilation
+5.8k Golang : Detect words using using consecutive letters in a given string
+12.8k Golang : Transform comma separated string to slice example
+6.3k Golang : Build new URL for named or registered route with Gorilla webtoolkit example
+8.3k Golang : Append and add item in slice
+7.6k Golang : Get YouTube playlist
+19.4k Golang : Delete item from slice based on index/key position
+13.9k Android Studio : Password input and reveal password example
+5.6k Golang : If else example and common mistake