ProtoBuffer安装
wget https://github.com/protocolbuffers/protobuf/releases/download/v2.6.1/protobuf-2.6.1.tar.gz
tar -zxvf protobuf-2.6.1.tar.gz
cd protobuf-2.6.1
./configure
make
make check
make install问题1:非root用户不能安装
# 具体安装路径由你定义
./configure --prefix=/home/work/app/protobufPATH=$PATH:$HOME/app/protobuf/bin问题2:protoc: error while loading shared libraries: libprotobuf.so.8: cannot open shared object file: No such file or directory
Last updated