其他分享
首页 > 其他分享> > go mod大小写与go get资源无法下载

go mod大小写与go get资源无法下载

作者:互联网

go get资源无法下载

  1. 设置GO111MODULE为on
export GO111MODULE=on 
  1. 设置GOPROXY为某个代理
export GOPROXY=https://goproxy.cn  #https://mirrors.aliyun.com/goproxy/ 阿里云代理
  1. 下载

go mod 下载Sirupsen/logrus

% go get github.com/Sirupsen/logrus

go get: github.com/Sirupsen/logrus@v1.8.1: parsing go.mod:
        module declares its path as: github.com/sirupsen/logrus
                but was required as: github.com/Sirupsen/logrus

标签:get,logrus,Sirupsen,go,com,mod
来源: https://www.cnblogs.com/szxyx/p/15473435.html