Skip to content

Instantly share code, notes, and snippets.

@therako
Last active November 30, 2017 08:06
Show Gist options
  • Save therako/4dd9423eb5663d6ecc5d2274b7a3cb0d to your computer and use it in GitHub Desktop.
Save therako/4dd9423eb5663d6ecc5d2274b7a3cb0d to your computer and use it in GitHub Desktop.
Scripts related to protobuf
VERSION=$1
if [ -z $VERSION ]; then
VERSION="3.5.0"
fi
curl -OL https://github.com/google/protobuf/releases/download/v${VERSION}/protoc-${VERSION}-linux-x86_64.zip
# Unzip
unzip protoc-${VERSION}-linux-x86_64.zip -d protoc3
# Move protoc to /usr/local/bin/
sudo mv protoc3/bin/* /usr/local/bin/
# Move protoc3/include to /usr/local/include/
sudo mv protoc3/include/* /usr/local/include/
# Optional: change owner
sudo chwon [user] /usr/local/bin/protoc
sudo chwon -R [user] /usr/local/include/google
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment