protobuf
protobuf copied to clipboard
gogo.proto File not found
Hello.
I'm newbie in grpc. I have some problems with gogoprotobuf.
After using command protoc --gogo_out=. *.proto I have this errors
I tried change Makefile and write path to gogoprotobuf, but it didn't help me.
I will be very grateful if someone can help me.
Sorry for my english
It looks like the proto file you are trying to compile wants to import some other proto files, and you didn't provide any -I paths to those other proto dependencies (imports). You can see examples in line 32 of your picture. Hope this helps... or maybe you already solved it.