最近在學golang,由於文化自信,Go語言好多包國內是沒法獲取的,寫這篇教程但願能夠幫助你們最快的解決資源被牆的問題,不要把時間浪費這種無心義的事情上.golang
$ go version # go version go1.12 darwin/amd64
複製代碼
$ vim .bash_profile
複製代碼
加上export GO111MODULE=on
export GOPROXY=https://goproxy.io
複製代碼
保存退出;source ~/.bash_profile
;使剛纔的修改當即生效;go env
;若是看到GOPROXY="https://goproxy.io"
則配置成功;