📅  最后修改于: 2023-12-03 14:41:33.472000             🧑  作者: Mango
Protocol Buffers,简称 Protobuf,是 Google 开源的一种轻便高效的结构化数据序列化方法,可用于各种语言和环境中。
在 Golang 中使用 Protobuf,需要先安装它的依赖库 protobuf 和 protoc-gen-go。下面将介绍如何安装它们。
去官网下载对应的安装包:
curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v3.15.6/protobuf-all-3.15.6.tar.gz
tar -xzvf protobuf-all-3.15.6.tar.gz
cd protobuf-3.15.6/
./configure
make && make install
protoc --version
如果能输出版本信息,代表安装成功。
go get -u github.com/golang/protobuf/protoc-gen-go
export PATH=$PATH:$GOPATH/bin
至此,Golang Protobuf 的环境就已安装完毕了。享受 Protobuf 带来的便利吧!
以上为安装过程,谨供参考。