简体   繁体   English

我是否需要Go语言运行库来运行已编译的Go应用程序?

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

使用Go编程语言在Windows上构建可执行文件时,是否需要安装Go运行时才能在另一台机器上运行该应用程序?

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 . 这里可能会有更好的答案。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM