# 如果已经安装了proto和protoc-gen-go的话就不用安装了
go get -u github.com/golang/protobuf/{proto,protoc-gen-go}# 下载grpc-go
git clone https://github.com/grpc/grpc-go.git $GOPATH/src/google.golang.org/grpc# 下载golang/net
git clone https://github.com/golang/net.git $GOPATH/src/golang.org/x/net# 下载golang/text
git clone https://github.com/golang/text.git $GOPATH/src/golang.org/x/text# 下载go-genproto
git clone https://github.com/google/go-genproto.git $GOPATH/src/google.golang.org/genproto# 安装
cd $GOPATH/src/
go install google.golang.org/grpc
【go-grpc 安装】 官方go get -u 命令几乎用不了,挂也不行
推荐阅读
- Go|Docker后端部署详解(Go+Nginx)
- GO|GO,GO,GO!
- Go成长之路|go中判断空字符串、nil和len(t)的用法
- go编译tools
- go grpc安装与使用
- goroutine 调度原理
- Go|Go进阶之路——复杂类型
- Go进阶之路——变量
- Go进阶之路——流程控制语句