0
我下面是關於在ubuntu 14.04上安裝golang protobuf的文檔go version go1.6 linux/amd64.
但是它並沒有安裝protoc
。我收到一個錯誤,說明protoc沒有安裝。另外,我在路徑環境變量中有$GOROOT/bin
。在ubuntu 14.04下安裝protobuf時出現問題lang
我下面是關於在ubuntu 14.04上安裝golang protobuf的文檔go version go1.6 linux/amd64.
但是它並沒有安裝protoc
。我收到一個錯誤,說明protoc沒有安裝。另外,我在路徑環境變量中有$GOROOT/bin
。在ubuntu 14.04下安裝protobuf時出現問題lang
錯誤消息我很清楚,你必須先安裝protoc
工具,它的文件中有所說明:Install the standard C++ implementation of protocol buffers from https://developers.google.com/protocol-buffers/
此外,錯誤消息指出相同的:Ubuntu系統,有一個包含這個二進制文件的包,它是protobuf-compiler
。
golang protobuf protoc-gen-go只是protoc
的插件,這就是爲什麼您首先需要protoc
。
http://askubuntu.com/questions/532701/how-can-i-install-protobuf-in-ubuntu-12-04 – Naresh