美文网首页golang 编程笔记
【golang】win上使用grpc的gateway执行文件找不

【golang】win上使用grpc的gateway执行文件找不

作者: dongzd | 来源:发表于2020-03-12 12:47 被阅读0次

首先安装gateway环境

1.依次安装下列框架

go get -u github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway
go get -u github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger
go get -u github.com/golang/protobuf/protoc-gen-go

对于win系统,在安装包后,有时在执行protoc命令时候出现执行文件找不到错误,就需要:

go install github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway
go install github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger
go install github.com/golang/protobuf/protoc-gen-go

执行上面命令,就会在GOPATH/bin下生成对应的二进制执行文件

相关文章

网友评论

    本文标题:【golang】win上使用grpc的gateway执行文件找不

    本文链接:https://www.haomeiwen.com/subject/wykujhtx.html