golang protoc grpc编译没效果解决

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

1、下载github.com/golang/protobuf

https://github.com/golang/protobuf 放到$GOPATN/src/github.com/golang目录下

2、安装grpc

go get google.golang.org/grpc  

3、安装proto

go get -u github.com/golang/protobuf/proto

go get -u github.com/golang/protobuf/protoc-gen-go
 

编译grpc/examples/helloworld/helloworld/下的proto文件

protoc --go_out=plugins=grpc:. helloworld.proto

如果编出来的没有加载grpc库,可能是protoc-gen-go文件路径不对

查找whereis protoc-gen-go 会发现这个文件有两个目录:

/usr/bin/protoc-gen-go 和 $GOPATH/bin/protoc-gen-go

这时把 $GOPATH/bin目录下的文件替换到/usr/bin/目录下再试就可以了

主要原因是protoc编译时从$PATH中首先访问/usr/bin目录,找到了protoc-gen-go就直接使用了,而go get -u github.com/golang/protobuf/protoc-gen-go安装时安装到了$GOPATH/bin目录下

转载于:https://my.oschina.net/ifraincoat/blog/842906

你可能感兴趣的:(golang protoc grpc编译没效果解决)