deepin golang微服務搭建go-micro環境

一、安裝microhtml

須要使用GO1.11以上版本linux

#linux 下
export GO111MODULE=on
export GOPROXY=https://goproxy.cn
# 使用以下指令安裝
go get -u -v github.com/micro/micro
go get -u -v github.com/micro/go-micro

二、安裝protocgit

參考文章見https://www.cnblogs.com/Dong-Ge/p/11463386.htmlgithub

三、安裝protoc-gen-microgolang

先安裝golang依賴庫spa

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

安裝protoc-gen-microcode

go get github.com/micro/protoc-gen-micro

四、最後安裝microhtm

go get github.com/micro/micro

五、生成micro文件blog

protoc --plugin=protoc-gen-go=$GOPATH/bin/protoc-gen-go --plugin=protoc-gen-micro=$GOPATH/bin/protoc-gen-micro --proto_path=$GOPATH/src:. --micro_out=. --go_out=. *.proto
相關文章
相關標籤/搜索