mac osx grpc-go 开发环境搭建

栏目: 服务器 · 发布时间: 5年前

内容简介:来自这里官方安装命令:原因你懂的。

0. 先决必要条件:golang 1.9+,这里略过。

1. quick install

来自这里 https://github.com/grpc/homebrew-grpc

brew tap grpc/grpc
brew install --with-plugins grpc

2. 从代码编译安装

2.1 protobuf install

brew install autoconf automake libtool curl make g++ unzip
下载[protobuf](https://github.com/protocolbuffers/protobuf/releases/latest)
tar -zxvf protobuf-x.x.x
cd protobuf-x.x.x
./configure --prefix=/usr
make
make check
sudo make install
protoc --version
  • 以上是基于release版本变异安装的过程。如果直接git clone master分支,可能还需要先安装xcode,之后:
    sudo xcode-select --install
  • 更详细步骤参考github项目 protobuf

2.2 grpc-go install

官方安装命令: go get google.golang.org/grpc
然而一般都会失败报错:

https fetch failed: Get https://google.golang.org/grpc?go-get=1: net/http: TLS handshake timeout

原因你懂的。

其实是这个代码已经转移到github上面了,但是代码里面的包依赖还是没有修改,还是google.golang.org这种,

所以:

git clone https://github.com/grpc/grpc-go.git $GOPATH/src/google.golang.org/grpc
    git clone https://github.com/golang/net.git $GOPATH/src/golang.org/x/net
    git clone https://github.com/golang/text.git $GOPATH/src/golang.org/x/text
    go get -u -v github.com/golang/protobuf/{proto,protoc-gen-go}
    git clone https://github.com/google/go-genproto.git $GOPATH/src/google.golang.org/genproto
    cd $GOPATH/src/
    go install google.golang.org/grpc

3. 总结

至此,grpc-go mac 开发环境ready!后续将继续分享grpc使用笔记,下篇计划:

  • grpc-go使用入门级示例。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

人工智能+:AI与IA如何重塑未来

人工智能+:AI与IA如何重塑未来

[美]韩德尔·琼斯(Handel Jones) [中]张臣雄 / 机械工业出版社 / 2018-10 / 55.00

当深度学习模型引发了全世界对人工智能的再次关注时,人工智能迎来第三次高速增长,人工智能(AI)、增强现实(AR)和虚拟现实(VR)正把人类带向新的“智能增强时代”(IA),我们将在不知不觉中接纳机器智能。 针对人类社会长期存在的众多复杂的动态的难题,人机融合智能将会提供全新的解决方案,谷歌、Facebook、微软、亚马逊、腾讯、阿里巴巴、百度等平台巨头纷纷斥千亿巨资布局人工智能的尖端技术;智......一起来看看 《人工智能+:AI与IA如何重塑未来》 这本书的介绍吧!

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

MD5 加密
MD5 加密

MD5 加密工具

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试