Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save code0100fun/bd1f1fb213dea7a36cf696a82cb6b839 to your computer and use it in GitHub Desktop.
Save code0100fun/bd1f1fb213dea7a36cf696a82cb6b839 to your computer and use it in GitHub Desktop.
# Make sure you grab the latest version
curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v3.8.0-rc1/protoc-3.8.0-rc-1-linux-x86_64.zip
# Unzip
unzip protoc-3.8.0-rc-1-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 chown [user] /usr/local/bin/protoc
sudo chown -R [user] /usr/local/include/google
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment