protoファイルを作成し、コードを自動生成しようとした際にエラーが発生。
protoc -I helloworld/ helloworld/helloworld.proto --go_out=plugins=grpc:helloworld
protoc-gen-go: program not found or is not executable
Please specify a program using absolute path or make sure the program is available in your PATH system variable
--go_out: protoc-gen-go: Plugin failed with status code 1.
PATHを設定してくださいと言われているようなので、bash_profile
に以下を追加すれば解決!
export GOPATH=$HOME/go
PATH=$PATH:$GOPATH/bin