Go 安装 sqlite3 驱动报错 fatal: The remote end hung up unexpectedly

Posted pointerC++

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Go 安装 sqlite3 驱动报错 fatal: The remote end hung up unexpectedly相关的知识,希望对你有一定的参考价值。

1. 问题:在 Windows 平台下使用 go get 安装sqlite3 驱动时报错 The remote end hung up unexpectedly ?

原因及解决方法:

       原因可能有两种:

  • 百度查了之后,说是 stackoverflow(缓冲区溢出了),找到一个解决方法.,直接执行下面的命令:
git config --global http.postBuffer 524288000

     或者直接在配置文件中添加参数,如下所示:

     打开该文件,在文件末尾添加:

[http] 
postBuffer = 524288000
  • 如果上面的方法不行,还有一种可能是网络比较缓慢情况下,连接就断开了,解决方法是增加最低速度时间:
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999

 2. 问题:在使用 go get 安装 golint 插件时报了 error: RPC failed; curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054 错误?

解决方法:

        先执行下面的命令:

git config --global http.postBuffer 524288000

        再执行下面的命令:

git config --global http.sslVerify "false"

       下载并安装成功:

参考文献:

  • https://www.jianshu.com/p/5f2348927504
  • https://www.cnblogs.com/wangkun1993/p/8514015.html

以上是关于Go 安装 sqlite3 驱动报错 fatal: The remote end hung up unexpectedly的主要内容,如果未能解决你的问题,请参考以下文章

go 拉取仓库依赖报错:fatal: could not read Username for ‘https://code.byted.org‘: terminal prompts disabled

go 拉取仓库依赖报错:fatal: could not read Username for ‘https://code.byted.org‘: terminal prompts disabled

Go语言连接数据库驱动安装和示例

EasyNVR运行日志报错fatal error: concurrent map read and map write排查

VS报错:LINK : fatal error LNK1104: 无法打开文件“msvcp100d.lib”

python中使用pip安装报错:Fatal error in launcher... 解决方法