美文网首页
mac安装protoc

mac安装protoc

作者: 0青花0 | 来源:发表于2018-08-10 11:20 被阅读0次

1.确认MAC装有g++、make、vim工具

2.安装make工具使用brew install make

3.去https://github.com/google/protobuf/releases下载对应的buf

编译:

./autogen.sh  在运行 ./configure 接着运行make,结束后在运行make install

注释:

./autogen.sh是获取GoogleMock,并生成对应的configure脚本

./configure是进行环境检测,并生成对应的makefile或Makefile--prefix=/usr/local可以指定安装路径

make,按照makefile编译工程

make install,执行makefile里面的install部分,进行安装--prefix=/usr/local可以指定安装路径

安装完成后版本查看: protoc --version

相关文章

  • Protobuf

    Protobuf Mac安装: brew install protobuf protoc —version 查看版...

  • mac安装protoc

    1.确认MAC装有g++、make、vim工具 2.安装make工具使用brew install make 3.去...

  • Mac 安装 protoc 指定版本

    依赖库 $ brew install automake$ brew install libtool 一. brew...

  • [Flutter]在Flutter中使用protobuf

    不说废话,直接贴步骤 安装protoc 安装dart dart 安装好后,就有pub命令了。 安装protoc_p...

  • Go语言proto使用入门

    Go语言proto使用入门 环境安装 protoc安装 protoc是用于编译proto文件的工具 scoop安装...

  • Demo: Mac 下测试谷歌Object Detection

    1、安装Python 、TensorFlow和其他依赖项 2、安装 Protoc, 进入Protoc下载页,下载对...

  • protobuf

    1. 下载安装 环境:mac os 从网站下载 名字类似于 protoc-3.9.1-osx-x86_64.zip...

  • 在 Ubuntu 上安装 Protobuf 3

    什么时候需要安装 如果使用 protoc 命令,遇到 Protoc not found,表示未安装。或者,执行时出...

  • windows 下载 grpc

    最近在windows 下安装grpc,趁着现在放假整体记录一下下载过程。 一.安装protoc程序 protoc下...

  • grpc学习记录

    pb安装 安装protocmacbrew install protobuf 安装protoc-gen-go$ go...

网友评论

      本文标题:mac安装protoc

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