Skip to content

Instantly share code, notes, and snippets.

View wagnerfonseca-luizalabs's full-sized avatar

Wagner Fonseca wagnerfonseca-luizalabs

View GitHub Profile
@wagnerfonseca-luizalabs
wagnerfonseca-luizalabs / Install Google Protobuf on Mac
Created October 31, 2017 18:39
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