美文网首页
解决go get tiemout

解决go get tiemout

作者: Alen_ab56 | 来源:发表于2022-09-15 11:30 被阅读0次

    解决方案:使用goproxy

    Go的1.11版本以后 可以设置GOPROXY这个变量,来设置代理。 

    如果你自己有代理服务器就可以把这个环境变量设置成自己的代理。 

    首先开启go module支持:

    在Mac/linux下执行:

    export GO111MODULE=on

    Windows平台执行:

    SET GO111MODULE=on

    我们这里以https://goproxy.cn为例:

    在Mac/linux下可以执行以下命令来设置:

    export GOPROXY=https://goproxy.cn

    Windows平台在cmd执行以下命令来设置:

    SET GOPROXY="https://goproxy.cn"

    或者在PowerShell中执行:

    C:> $env:GOPROXY = "https://goproxy.cn"

    相关文章

      网友评论

          本文标题:解决go get tiemout

          本文链接:https://www.haomeiwen.com/subject/yvdjortx.html