Go杂项记录
date
Apr 3, 2023
slug
gobase
status
Published
tags
Golang
summary
type
Post
- Mac电脑安装:
brew install go
- 配置国内镜像:推荐https://goproxy.cn/
- 在终端上设置代理(go 1.13及以上)
$ go env -w GO111MODULE=on
$ go env -w GOPROXY=https://goproxy.cn,direct
$ echo "export GO111MODULE=on" >> ~/.profile
$ echo "export GOPROXY=https://goproxy.cn" >> ~/.profile
$ source ~/.profile