Ubuntu安装Protocol Buffer

前端之家收集整理的这篇文章主要介绍了Ubuntu安装Protocol Buffer前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

https://github.com/google/protobuf/releases/下载Source code

安装 Protocol Buffer 依赖

sudo apt install autoconf automake libtool curl

解压,进入解压后的文件夹,运行 autogen.sh 脚本

./autogen.sh

运行 configure.sh 脚本

./configure

编译未编译的依赖包

make

检查依赖包是否完整

make check

安装

sudo make install

配置动态链接

sudo ldconfig

检查 Protocol Buffer 是否安装成功

protoc --version
原文链接:https://www.f2er.com/ubuntu/352668.html

猜你在找的Ubuntu相关文章