[Protocol Buffer/gRPC] protoc-gen-go-grpc: program not found or is not executable--go-grpc_out: protoc-gen-go-grpc: Plugin failed with status code 1.
proto파일에서 gRPC 서비스와 함수의 interface를 정의하고 난 후 아래의 명령어를 입력했습니다. protoc --go_out=. --go_opt=paths=source_relative \ --go-grpc_out=. --go-grpc_opt=paths=source_relative \ my_service.proto 그러니까 아래의 에러가 발생했습니다. protoc-gen-go: program not found or is not executable --go_out: protoc-gen-go: Plugin failed with status code 1. sudo apt install golang-goprotobuf-dev 위의 명령어를 사용해서 프로그램을 하나 설치했습니다. 그러니까 에러가 약간 ..