본문 바로가기
Operating System/Linux

[Rocky] GRPC-GO (protobuf) compiler 설치

by 근육곰돌이 2024. 9. 4.
728x90

Protobuf 설치

 

dnf 설치

dnf --enablerepo=crb install protobuf-compiler

RPM 설치

wget https://dl.rockylinux.org/pub/rocky/9/CRB/x86_64/os/Packages/p/protobuf-compiler-3.14.0-13.el9.x86_64.rpm

rpm -Uvh protobuf-compiler-3.14.0-13.el9.x86_64.rpm

 

 

GRPC GO 설치

go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
export PATH="$PATH:$(go env GOPATH)/bin"

 

 

 

Reference

https://rockylinux.pkgs.org/9/rockylinux-crb-x86_64/protobuf-compiler-3.14.0-13.el9.x86_64.rpm.html

https://grpc.io/docs/languages/go/quickstart/

 

반응형