I am following this documentation for installing the golang protobuf on ubuntu 14.04 for go version go1.6 linux/amd64.
But it doesn't install the protoc
. I am getting an error that protoc is not installed. Also, I have $GOROOT/bin
in the path enviroment variable.
在Ubuntu 14.04中为Go lang安装protobuf时出现问题
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
1条回答 默认 最新
- duanha3539 2016-10-06 08:41关注
The error message is clear to me, you have to install the
protoc
tool first, it is specified in the documentation:Install the standard C++ implementation of protocol buffers from https://developers.google.com/protocol-buffers/
Also, the error message says the same: on ubuntu system, there is a package containing this binary, which is
protobuf-compiler
.The golang protobuf protoc-gen-go is merely a plugin of
protoc
, that's why you needprotoc
first.本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报