栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 系统运维 > 运维 > Linux

Ubuntu 20.04 64位 Google Protocol ProtoV3 bufbuild buf 工具安装使用指南

Linux 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Ubuntu 20.04 64位 Google Protocol ProtoV3 bufbuild buf 工具安装使用指南

1 buf工具安装 1.1 下载地址

Releases · bufbuild/buf · GitHubA new way of working with Protocol Buffers. Contribute to bufbuild/buf development by creating an account on GitHub.https://github.com/bufbuild/buf/releases

选择版本:

linux 64位版本:

buf-Linux-x86_64.tar.gz

1.2 解压安装
wget https://github.com/bufbuild/buf/releases/download/v1.0.0-rc6/buf-Linux-x86_64.tar.gz
tar -xvf buf-Linux-x86_64.tar.gz
cd buf-Linux-x86_64
pwd

据对路径使用: $pwd/buf -h

1.3 配置/etc/profile 让buf命令全局生效

添加以下行到/etc/profile末尾,具体$HOME路径需要自行获取(切记)

export PATH=$PATH:$HOME/buf-Linux-x86_64/bin
source /etc/profile

注意命令只会当前终端生效,.buf -h 查看帮助

全局生效,sudo reboot 重启机器

2 protoc安装 2.1 下载地址

Releases · protocolbuffers/protobuf · GitHubProtocol Buffers - Google's data interchange format - Releases · protocolbuffers/protobufhttps://github.com/protocolbuffers/protobuf/releases选择版本,protoc-3.19.1-linux-x86_64.zip

2.2 解压安装
wget https://github.com/protocolbuffers/protobuf/releases/download/v3.19.1/protoc-3.19.1-linux-x86_64.zip
unzip protoc-3.19.1-linux-x86_64.zip
cd protoc-3.19.1-linux
pwd

2.3 配置/etc/profile安装

添加以下行到/etc/profile末尾,具体$HOME路径需要自行获取(切记)

export PATH=$PATH:$HOME/protoc-3.19.1-linux/bin
source /etc/profile

注意命令只会当前终端生效,protoc -h 查看帮助

全局生效,sudo reboot 重启机器

3 golang语言搭建 3.1 protoc 和go 相关插件安装 3.1.1 grpc-go

使用git下载grpc-go源代码,并安装protoc-gen-go-grpc

git clone https://github.com/grpc/grpc-go.git
cd grpc-go/cmd/protoc-gen-go-grpc/
go build 
go install
which protoc-gen-go-grpc

3.1.2 go proto 安装

go install github.com/golang/protobuf/protoc-gen-go
which protoc-gen-go
3.2 编译生成go代码 3.2.1 下载buf-tour示例代码
git clone https://github.com/bufbuild/buf-tour

 注意检查go工程代码目录有配置文件

buf.yaml

buf.gen.yaml

3.2.2 生成代码
cd buf-tour
buf generate 

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/457703.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号