Windows环境下gRPC安装

栏目: 服务器 · 发布时间: 5年前

  • 安装Protobuf
    https://github.com/protocolbu... 下载protoc的安装程序,选择合适的版本,目前最新版本是protoc-3.8.0-win64.zip,下载解压后,将protoc.exe拷贝至放入到GOPATHbin目录下
  • 安装grpc
    由于国内的网络环境无法通过执行go get google.golang.org/grpc命令直接安装,只能通过如下方式进行安装:
    创建google.golang.org相关目录
    在GOPATHsrc目录下创建google.golang.org目录及其子目录src
    下载gRPC
    将命令行的当前路径切换至GOPATHsrcgoogle.golang.orgsrc,执行如下命令
    git clone https://github.com/grpc/grpc-go
    下载完成后将grpc-go的文件夹名称修改为grpc
    下载genproto
    将命令行的当前路径切换至GOPATHsrcgoogle.golang.orgsrc,执行如下命令
    git clone https://github.com/google/go-genproto
    下载完成后将go-genproto的文件夹名称修改为genproto
    下载text包
    将命令行的当前路径切换至GOPATHsrcgolang.org,执行如下命令
    git clone https://github.com/golang/text.git
    下载net包
    将命令行的当前路径切换至GOPATHsrcgolang.org,执行如下命令
    git clone https://github.com/golang/net.git 安装proto
    执行如下命令
    go get -u github.com/golang/protobuf/proto 安装protoc-gen-go
    执行如下命令
    go get -u github.com/golang/protobuf/protoc-gen-go 安装gRPC
    将命令行的当前路径切换至GOPATHsrc,执行如下命令
    go install google.golang.org/grpc
  • gRPC安装验证
    生成执行代码
    将命令行的当前路径切换至GOPATHgoogle.golang.orggrpcexampleshelloworldhelloworld,执行如下命令
    protoc --go_out=plugins=grpc:. helloworld.proto
    命令执行完成后,在GOPATHgoogle.golang.orggrpcexampleshelloworldhelloworld目录下会生成helloworld.pb.go文件
    启动gRPC Server
    将命令行的当前路径切换至GOPATHgoogle.golang.orggrpcexampleshelloworldgreeter_server,执行如下命令启动gRPC Server
    go run main.go
    启动gRPC客户端
    将命令行的当前路径切换至GOPATHgoogle.golang.orggrpcexampleshelloworldgreeter_client,执行如下命令启动gRPC客户端
    go run main.go
    执行该命令后,命令行中出现2019/06/18 13:54:21 Greeting: Hello world信息表明gRPC安装成功并通过验证。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

The Algorithm Design Manual

The Algorithm Design Manual

Steven S Skiena / Springer / 2011-11-14 / GBP 55.07

....The most comprehensive guide to designing practical and efficient algorithms.... Written by a well-known algorithms researcher who received the IEEE Computer Science and Engineering Teaching Aw......一起来看看 《The Algorithm Design Manual》 这本书的介绍吧!

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具