Skip to content

Instantly share code, notes, and snippets.

@akmamun
Created February 17, 2019 20:07
Show Gist options
  • Save akmamun/c3afc8e9318135d5f79177ff528655a4 to your computer and use it in GitHub Desktop.
Save akmamun/c3afc8e9318135d5f79177ff528655a4 to your computer and use it in GitHub Desktop.
Install protobuf 3 on Ubuntu
curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v3.7.0rc2/protoc-3.7.0-rc-2-linux-x86_64.zip
# Unzip
unzip protoc-3.7.0-rc-2-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/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment