Skip to content

Instantly share code, notes, and snippets.

@iampato
Created September 4, 2023 17:13
Show Gist options
  • Save iampato/a07e219b6557826f5879a765a0c6baed to your computer and use it in GitHub Desktop.
Save iampato/a07e219b6557826f5879a765a0c6baed to your computer and use it in GitHub Desktop.
Alternative of installing protoc on Mac (brew failed)
PROTOC_ZIP=protoc-3.14.0-osx-x86_64.zip
curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v3.14.0/$PROTOC_ZIP
sudo unzip -o $PROTOC_ZIP -d /usr/local bin/protoc
sudo unzip -o $PROTOC_ZIP -d /usr/local 'include/*'
rm -f $PROTOC_ZIP
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment