Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wagnerfonseca-luizalabs/becedc8c5aeb6a8a60f8d72bbf140978 to your computer and use it in GitHub Desktop.
Save wagnerfonseca-luizalabs/becedc8c5aeb6a8a60f8d72bbf140978 to your computer and use it in GitHub Desktop.
How to install Google Protobuf on Mac
$ wget https://github.com/google/protobuf/releases/download/v3.4.1/protobuf-cpp-3.4.1.tar.gz
$ tar -zxvf protobuf-cpp-3.4.1.tar.gz
$ sudo mv protobuf-3.4.1 /usr/local/bin
$ cd /usr/local/bin/protobuf-3.4.1
$ ./configure
$ make
$ make install
$ protoc --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment