1. 程式人生 > >Go 安裝 sqlite3 驅動報錯 fatal: The remote end hung up unexpectedly

Go 安裝 sqlite3 驅動報錯 fatal: The remote end hung up unexpectedly

問題 buffer 時報 stack style image 配置 pan onf

問題:在 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

參考文獻:

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

Go 安裝 sqlite3 驅動報錯 fatal: The remote end hung up unexpectedly