Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
都说 Golang 是编译型语言,那编译型是什么意思呢?如果将 golang 应用程序编译为机器代码,为什么我不能只分发二进制文件(当然在相应的架构和平台上)而不是go install东西?
go install
一旦你编译了一个二进制文件,你就可以将它分发到具有相同架构的机器上。 go install, go run,等只是编译所必需的。
go install,
go run,