Skip to content

Instantly share code, notes, and snippets.

@skyrocknroll
Created November 3, 2017 07:50
Show Gist options
  • Save skyrocknroll/8f7c9d2f60bebbee717e82993efb0363 to your computer and use it in GitHub Desktop.
Save skyrocknroll/8f7c9d2f60bebbee717e82993efb0363 to your computer and use it in GitHub Desktop.
Install protobuf 3 on ubuntu 16
# Make sure you grab the latest version
curl -OL https://github.com/google/protobuf/releases/download/v3.4.0/protoc-3.4.0-linux-x86_64.zip
# Unzip
unzip protoc-3.4.0-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