GitHub (opens new window)

安装和编译

PPG007 ... 2022-5-6 Less than 1 minute

# 安装和编译

安装命令:

sudo apt-get install protobuf-compiler
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
1
2
3

安装 Protobuf 后,如果执行 protoc 命令出现 Protobuf cannot find shared libraries 的错误,可以执行:sudo ldconfig 命令解决。

编译命令:

示例:protoc -I ./proto/ --go_out=pb --go-grpc_out=pb proto/*.proto