go get: installing executables with ‘go get‘ in module mode is deprecated.

go get: installing executables with 'go get' in module mode is deprecated

问题描述

  • 场景描述

    执行go get github.com/github/hub 安装go相关组件时报错

  • 报错信息

    
        $ go get github.com/github/hub 
        go get: installing executables with 'go get' in module mode is deprecated. 
        To adjust and download dependencies of the current module, use 'go get -d'. 
        To install using requirements of the current module, use 'go install'. 
        To install ignoring the current module, use 'go install' with a version, 
        like 'go install example.com/cmd@latest'. 
        For more information, see https://golang.org/doc/go-get-install-deprecation 
        or run 'go help get' or 'go help install'. 
    
    

原因分析

  • Go1.17版使用go install安装依赖

    go get 用于下载并安装 Go 包、命令等,而 go install 在 module 时代几乎很少使用,在 GOPATH 年代,go install 用来编译安装本地项目

    自 1.16 起,官方说,不应该 go get 下载安装命令(即可执行程序),不过只是这么说,却依然可以使用。

    但 Go1.17 开始,如果使用 go get 安装命令会告警。

解决方案

  • 安装远程依赖命令

    
        # Go1.16及以前
        go get -u -v github.com/github/hub
    
        # Go1.17版本
        go install github.com/bingoohuang/hub@latest
    
    

参考链接

  • go国内代理网站

    https://goproxy.cn/

  • 解决 Failed to connect to github.com port 443:connection timed out

    https://blog.csdn.net/Hodors/article/details/103226958

  • 7
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 4
    评论
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值