1. 从官网下载后安装
2 打开终端配置代理
go env -w GOPROXY=https://goproxy.cn,direct
go version
3. 配置 go的环境变量
vim ~/.zshrcexport PATH=$PATH:/usr/local/go/bin
4. 在 vscode中安装Go扩展插件
shift+command+p>Go: Insatall/Update Tools
5. 输出 hello world
package main
import (
"fmt"
)
func main() {
fmt.Println("hello world!")
}
// 在终端运行命令 go run test.go
// hello world!