protoc-gen-go 컴파일 시 에러 해결법
gRPC 파일 생성을 위해 컴파일을 할 때 생기는 에러 중 "program not found or is not executable" 에러에 대한 해결법이다. protoc --go_out=. --go_opt=paths=source_relative \ --go-grpc_out=. --go-grpc_opt=paths=source_relative \ helloworld/helloworld.proto 위 코드는 gRPC 공식 문서의 컴파일 커맨드인데 입력 시 아래와 같은 에러가 생기는 경우가 있다. protoc-gen-go: program not found or is not executable Please specify a program using absolute path or make sure the progr..
Go
2022. 3. 22. 08:28