Jeff Li

Be another Jeff

Install Protocol Buffer from Source in CentOS 7

Figuring out dependencies in specific distribution is really boring, not fun at all.

Hope this post can save you some time.

1
2
3
4
5
6
sudo yum install autoconf automake libtool unzip gcc-c++ git -y
git clone https://github.com/google/protobuf.git
cd protobuf
./autogen.sh
./configure
make

Comments