Windows下安装Go开发环境
点我下载
Windows配置Go环境变量
出现工具install失败时,切换其它代理
# 1. 七牛 CDN
go env -w GOPROXY=https://goproxy.cn,direct# 2. 阿里云
go env -w GOPROXY=https://mirrors.aliyun.com/goproxy/,direct# 3. 官方
go env -w GOPROXY=https://goproxy.io,direct
package main
import ("fmt"
)
func main() {fmt.Println("hello,word")
}