New to protobuf and grpc, was trying the grpc Quick start tutorial.
I installed latest Go (1.15.8) and protobuf (v 3.14.0).
Then I installed protobuf compiler via:
I am able to compile my test.proto to get test.pb.go and test_grpc.pb.go via:
protoc --go_out=. --go-grpc_out=. test.proto
But compiling my sample code I get errors i.e.
Any idea how to get grpc to point to protobuf v2? Or I need to switch to protobuf v1 (
github.com/golang/protobuf) to work with grpc?