Reputation: 546
With the Go programming language when I build an executable on Windows do I need the Go runtime installed to run the application on another machine?
Upvotes: 17
Views: 11255
As long as any dependencies your program has are installed on the machine running the program, or your program is statically compiled, the user will be able to run your program without installing anything. A better answer might be here.
Upvotes: 21