1. 下载安装go环境: https://golang.google.cn/dl/
2. 配置go环境:
vim ~/.bash_profile (打开文件)
export GOROOT=/usr/local/go
export GOPATH=/go/monitor # 开发代码的项目路径
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
source ~/.bash_profile (立即生效)
3.使用goLand编辑器设置go的GOROOT和GOPATH,如下图
设置完成后一定要重启电脑,特别是曾经安装并开发过go项目
3. 安装govendor(包管理工具)
go get github.com/kardianos/govendor
安装完成govendor下,最后重启电脑,不然govendor命令可能不生效
4.在gopath的目录(即go/monitor)下创建src文件夹,如下图
5.切换到src/monitor目录下,在终端执行命令
govendor init
如果没有报错,证明此命令运行成功
5.安装gin,在monitor目录下执行
govendor fetch github.com/gin-gonic/gin
curl https://raw.githubusercontent.com/gin-gonic/examples/master/basic/main.go > main.go
go run main.go