This article was last updated on <span id="expire-date"></span> days ago, the information described in the article may be outdated.
Go 环境搭建
- 安装完 Go,添加
bin
目录到环境变量. - CMD 配置 go 环境
go version # 输出版本
go env # 显示 go 环境变量
set GO111MODULE=on # 包管理
set GOPROXY=http://goproxy.cn # 设置镜像源
- Vscode 安装
Go
Run code
插件
Hello Go
package main
import "fmt"
func main() {
fmt.Println("hello go")
}
# 运行
go run helloworld.go
# 编译为可执行文件
go build hellworld.go
# 下载包
go mod init go_pro # 新建依赖
go get XXX 或 go get install 源码包
go list # 列出包
go tool # 输出go工具
Author: WhaleFall
Permalink: https://www.whaleluo.top/golang/golang-envbuild-note/
文章默认使用 CC BY-NC-SA 4.0 协议进行许可,使用时请注意遵守协议。
Comments