美文网首页
macOS系统 protobuf安装及指定版本安装

macOS系统 protobuf安装及指定版本安装

作者: Living_元宝儿 | 来源:发表于2022-10-27 12:44 被阅读0次

    1.首先查看brew 版本
    打开终端输入:

    brew -v
    

    如果显示下图内容说明还未装brew

    -bash: brew: command not found
    

    如果显示下图内容说明已安装

    Homebrew 3.6.7
    Homebrew/homebrew-core (git revision 474230704f2; last commit 2022-10-27)
    

    然后把需要的东西安装好

    brew install automake
    brew install libtool
    

    如果想安装默认最新版本的protobuf
    终端输入

    brew install protobuf
    

    安装指定版本protobuf

    首先查看是否安装protobuf

    protoc --version
    

    如果显示下图内容说明已安装

    libprotoc 3.6.1
    

    卸载重新安装指定版本,不卸载后续安装没有权限

    brew uninstall protobuf   
    

    下载指定版本到 https://github.com/protocolbuffers/protobuf/releases 选择下载想要的版本号,例如:protoc-3.6.1-osx-x86_64.zip,解压后安装,终端执行;

    cd protoc-3.6.2-osx-x86_64     // 切到解压包路径下
    cp -r include/ /usr/local/include/
    cp -r bin/ /usr/local/bin/
    

    查看是否安装成功

    protoc
    

    查看版本号

    protoc --version
    

    然后删除 cocoapods缓存

    rm -rf Pods/AliyunLogObjc
    pod cache clean AliyunLogObjc
    

    至此安装成功

    相关文章

      网友评论

          本文标题:macOS系统 protobuf安装及指定版本安装

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