准备工作
git clone https://github.com/grpc/grpc.git
cd grpc
## 选择一下版本
git reset --hard v1.9.1
## 下载子模块
git submodule update --init
编译安装protobuf
cd third_party/protobuf
./autogen.sh
./configure
make -j12
sudo make install
编译安装grpc
cd ../..
make -j12
sudo make install
碰到的问题
在编译grpc的时候出现了libprotobuf库冲突的问题,
原因是系统已经安装了libprotobuf-dev的库,remove掉即可。