go run
go run main.go 也可以执行程序,该命令本质上也是先编译再执行。
跨平台编译
# 编译Linux可执行文件
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o hello.linux-amd64.go
# 编译Windows可执 ...……
安装(前提是本地已安装protobuf和protof的go扩展)
go get github.com/micro/micro
go get github.com/micro/go-micro
go get github.com/micro/protoc-gen-micro
go get github.com/micro/go-plugins/registry/co ...……