Skip to content

Generating protobufs #57

Closed Answered by dhschall
lrq619 asked this question in Q&A
Jun 14, 2023 · 4 comments · 1 reply
Discussion options

You must be logged in to vote

The problem is you also need to install the protoc compiler. The two packes you installed are only plugins.
https://grpc.io/docs/languages/go/quickstart/

You can use the workflow file as a hint.

- name: Install protoc

PROTOC_ZIP=protoc-3.14.0-linux-x86_64
curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v3.14.0/$PROTOC_ZIP.zip
unzip -o $PROTOC_ZIP.zip -d $HOME/.local
chmod +x $HOME/.local/bin/protoc
rm -f $PROTOC_ZIP.zip

Replies: 4 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by dhschall
Comment options

You must be logged in to vote
1 reply
@lrq619
Comment options

lrq619 Jul 2, 2023
Maintainer Author

Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #51 on June 29, 2023 05:23.