Hi All,
I am new to gRPC. I was going through installation steps. I have golang installed 1.5v and i have installed installed protoc and protoc-gen-go.
go get -u github.com/golang/protobuf/protoc-gen-go
go get -u github.com/golang/protobuf/proto
i have also downloaded c++ protoc binary in c:\protoc\.
i created a proto file in c:\test\example dir with name person.proto.
when i run below commad. it is giving error:
C:\protoc>protoc -I=\test\example --go_out=\test\example \test\example\person.proto
that
--go_out: protoc-gen-go: The system cannot find the file specified.
but if i replace go_out with cpp_out it is working fine.
Please suggest if i missing something here.