一.安装本地环境
- 进入golang社区 下载本地安装包
https://studygolang.com/dl
- 根据自己电脑系统进行下载安装
更改go env 文件,开启 module,更换镜像源
go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.cn
安装vs code 或 goland 编辑器
二.创建go文件 xxx.go
package main
import "fmt"
func main() {
fmt.Println("hello world");
}
- 打开终端输入
go run xxx.go 执行文件
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!