zoukankan      html  css  js  c++  java
  • [GO]解决golang.org/x/ 下包下载不下来的问题

    因为在项目中要使用到一个golang.org的包,但是因为墙的问题,官方方法已经无法使用,但是在github上存在一个镜像站可以使用,我们只需要将它克隆下来就可以正常使用了

    mkdir -p $GOPATH/src/github.com/golang/
    git clone https://github.com/golang/sys.git $GOPATH/src/github.com/golang/sys
    git clone https://github.com/golang/net.git $GOPATH/src/github.com/golang/net
    git clone https://github.com/golang/text.git $GOPATH/src/github.com/golang/text
    git clone https://github.com/golang/lint.git $GOPATH/src/github.com/golang/lint
    git clone https://github.com/golang/tools.git $GOPATH/src/github.com/golang/tools
    git clone https://github.com/golang/crypto.git $GOPATH/src/github.com/golang/crypto
    
    ln -s $GOPATH/src/github.com/golang/ $GOPATH/src/golang.org/x
  • 相关阅读:
    图片《小美眉》
    redhat基本知识
    Linux 求助。设置分辨率?

    PHP close
    别想一个人承担一切
    java charAt返回char,不是int
    我的计算器
    支付宝面试小贴士
    java string charAt length()疑惑
  • 原文地址:https://www.cnblogs.com/baylorqu/p/10368318.html
Copyright © 2011-2022 走看看