Skip to content

Instantly share code, notes, and snippets.

@mustafaturan
Created February 2, 2019 05:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mustafaturan/6411dac3126ac39a9b60f13cf2c762f9 to your computer and use it in GitHub Desktop.
Save mustafaturan/6411dac3126ac39a9b60f13cf2c762f9 to your computer and use it in GitHub Desktop.
Install protobuf on Mac
#!/bin/bash
wget https://github.com/protocolbuffers/protobuf/archive/v3.7.0rc2.tar.gz
tar -zxvf protobuf-3.7.0rc2.tar.gz
cd protobuf-3.7.0rc2
./autogen.sh
./configure
make
make install
# checks
which protoc
protoc --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment