1. 建议go版本在1.13以上
    2. 打开你的终端并执行

      1. go env -w GO111MODULE=on
      2. go env -w GOPROXY=https://goproxy.cn,direct
    3. 设置环境变量,分window和macos/Linux

    windows

    1. 输入 powershell,(这个功能很神奇,我第一次用)
    2. PS C:\Users\mark> $env:GOPROXY = "https://goproxy.cn"

    macos/Linux

    1. echo "export GOPROXY=https://goproxy.cn" >> ~/.profile && source ~/.profile

    完成