Mark Howard
Mark Howard

Reputation: 546

Do I need the Go language runtime to run a compiled Go application?

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

Answers (1)

Kookerus
Kookerus

Reputation: 546

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

Related Questions