centos7 编译 protobuf
时间: 2023-12-14 12:34:10 浏览: 130
在centos7 编译安装部署Hadoop教程
在CentOS 7下编译protobuf的步骤如下:
1.首先,需要安装必要的依赖项,包括autoconf、automake、libtool、curl、make、g++、unzip和git。可以使用以下命令进行安装:
```shell
sudo yum install autoconf automake libtool curl make g++ unzip git
```
2.从protobuf的GitHub仓库中获取源代码。可以使用以下命令进行克隆:
```shell
git clone https://github.com/google/protobuf.git
```
3.进入protobuf目录并执行以下命令:
```shell
./autogen.sh
./configure
make
make check
sudo make install
sudo ldconfig
```
4.执行完上述命令后,protobuf就已经成功安装在系统中了。可以使用以下命令检查protobuf的版本:
```shell
protoc --version
```
输出的结果应该类似于“libprotoc 3.1.0”。
阅读全文