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
Last active
September 4, 2017 09:03
-
-
Save diegopacheco/9c8f438fdd2f21cb578a518bddc2cc01 to your computer and use it in GitHub Desktop.
How to Install Google Protocol Buffers on Ubuntu Linux 15.10?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Please add "./configure" in between "./autogen.sh" and "make"