Created
September 4, 2023 17:13
-
-
Save iampato/a07e219b6557826f5879a765a0c6baed to your computer and use it in GitHub Desktop.
Alternative of installing protoc on Mac (brew failed)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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