在 Ubuntu 上安装 Protobuf 3

作者: triplestudio | 来源:发表于2019-06-25 09:45 被阅读7次

    什么时候需要安装

    如果使用 protoc 命令,遇到 Protoc not found,表示未安装。或者,执行时出现错误:This parser only recognizes "proto2",则表示不是3.0版。

    安装过程及可能遇到的问题

    安装指令

    详细介绍请参考此文:protobuf简单介绍和ubuntu 16.04环境下安装
    依次执行以下命令,下载源码编译安装,需要较长时间,超过10分钟。

    sudo apt-get install autoconf automake libtool curl make g++ unzip
    git clone https://github.com/google/protobuf.git
    cd protobuf
    git submodule update --init --recursive
    ./autogen.sh
    ./configure
    make
    make check
    sudo make install
    sudo ldconfig # refresh shared library cache.
    

    可能遇到问题

    很有可能,执行过程中会出现以下错误提示:

    ./autogen.sh: 4: ./autogen.sh: autoreconf: not found
    

    解决办法:执行以下命令即可。

    sudo apt-get install autoconf
    sudo apt-get install automake
    sudo apt-get install libtool
    

    安装完成之后

    执行以下命令验证安装结果,查看版本号。

    protoc --version
    

    恭喜得到:libprotoc 3.9.0 或更高版本号。

    相关文章

      网友评论

        本文标题:在 Ubuntu 上安装 Protobuf 3

        本文链接:https://www.haomeiwen.com/subject/eqwzqctx.html