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
 

© 刘德华 2020 - 2023