micro安装

  • 一、安装 protobuf
  • 二、安装 go-micro
  • 三、安装 micro
  • 四、安装错误信息:找不到crypto包
  • 五、参考地址

一、安装 protobuf

  • 命令
go get github.com/micro/protobuf/{
     proto,protoc-gen-go}
  • 注:windows不支持 {...,...} 格式,我们可以分别执行,如下:
go get github.com/micro/protobuf/proto
go get github.com/micro/protobuf/protoc-gen-go

二、安装 go-micro

go get github.com/micro/go-micro

三、安装 micro

go get github.com/micro/micro

四、安装错误信息:找不到crypto包

git clone https://github.com/golang/crypto.git  $GOPATH/src/golang.org/x/crypto

五、参考地址

  • micro安装
  • https://www.jianshu.com/p/36d9376321cd

你可能感兴趣的:(#,Go,go,mirco安装,安装protobuf)