dtz33344 2015-06-11 20:54
浏览 49

无法检测Go Protobuf的版本控制系统

Running go get on my go project I receive the following error message:

package code.google.com/p/goprotobuf/proto: unable to detect version control system for code.google.com/ path

I have not changed anything, what is going on?

  • 写回答

1条回答 默认 最新

  • dongnan4571 2015-06-11 20:54
    关注

    The golang protobuf project has moved from google code to github.

    The protoc version being used to generate the go code from the protocol buffer definition is out of date and uses the old import.

    Install protoc-gen-go from github project instructions: https://github.com/golang/protobuf

    评论

报告相同问题?