Go Micro 环境 (MAC 环境 保持更新) 作者: 王十三 时间: 2020-08-14 分类: GoLang ##安装 Micro 环境 相关文档 https://www.kancloud.cn/linimbus/go-micro/529024 ###1. 安装Go-Micro服务 官网地址: https://github.com/micro/micro ``` # MacOS curl -fsSL https://raw.githubusercontent.com/micro/micro/master/scripts/install.sh | /bin/bash # Linux wget -q https://raw.githubusercontent.com/micro/micro/master/scripts/install.sh -O - | /bin/bash # Windows powershell -Command "iwr -useb https://raw.githubusercontent.com/micro/micro/master/scripts/install.ps1 | iex" ``` PS : 版本查看 https://github.com/micro/micro/releases curl -s https://github.com/micro/micro/releases | grep \"tag_name\" 标签: Go, goLang
评论已关闭