Skip to content

Instantly share code, notes, and snippets.

@diegopacheco
Last active September 4, 2017 09:03
Show Gist options
  • Save diegopacheco/9c8f438fdd2f21cb578a518bddc2cc01 to your computer and use it in GitHub Desktop.
Save diegopacheco/9c8f438fdd2f21cb578a518bddc2cc01 to your computer and use it in GitHub Desktop.
How to Install Google Protocol Buffers on Ubuntu Linux 15.10?
sudo apt-get install -y git autoconf automake libtool curl make g++ unzip
git clone https://github.com/google/protobuf.git
cd protobuf/
./autogen.sh
make
make check
sudo make install
sudo ldconfig # refresh shared library cache.
protoc -h
@hemshankar
Copy link

Please add "./configure" in between "./autogen.sh" and "make"

@stevenferrer
Copy link

Hey Guys! check this gist

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment