Skip to content

Instantly share code, notes, and snippets.

@richbodo
Created June 19, 2019 02:41
Show Gist options
  • Save richbodo/08974a4a818aa047cb0e3cb429c24b95 to your computer and use it in GitHub Desktop.
Save richbodo/08974a4a818aa047cb0e3cb429c24b95 to your computer and use it in GitHub Desktop.
Update protocol buffers on deb 9 to 3.7.1
PROTOC_ZIP=protoc-3.7.1-linux-x86_64.zip
curl -OL https://github.com/google/protobuf/releases/download/v3.7.1/$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