📜  golang protobuff 安装 - Shell-Bash (1)

📅  最后修改于: 2023-12-03 14:41:33.472000             🧑  作者: Mango

Golang Protobuff 安装

Protocol Buffers,简称 Protobuf,是 Google 开源的一种轻便高效的结构化数据序列化方法,可用于各种语言和环境中。

在 Golang 中使用 Protobuf,需要先安装它的依赖库 protobuf 和 protoc-gen-go。下面将介绍如何安装它们。

安装 Protobuf
步骤一:下载安装包

去官网下载对应的安装包:

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

如果能输出版本信息,代表安装成功。

安装 protoc-gen-go
步骤一:下载安装
go get -u github.com/golang/protobuf/protoc-gen-go
步骤二:将可执行文件所在目录加入环境变量
export PATH=$PATH:$GOPATH/bin
结语

至此,Golang Protobuf 的环境就已安装完毕了。享受 Protobuf 带来的便利吧!

以上为安装过程,谨供参考。