错误:RPC失败;curl 6 SSL读取:错误:00000000:lib(0):func(0):原因(0),

2024-09-28 05:23:52 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在尝试在heroku上部署flask应用程序。具体来说,NLTK数据按照this解决方案发送到服务器。因为某些原因,我一直得到这个错误。所以我试着创建一个新的Heroku项目,并推动我的本地项目,但仍然遇到了同样的错误。在

C:\Users\mysys\mywebservices-test\warm-sierra-60310>git push heroku mas
ter
Counting objects: 23005, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (22954/22954), done.
error: RPC failed; curl 6 SSL read: error:00000000:lib(0):func(0):reason(0), err
no 10053
The remote end hung up unexpectedly/23005), 499.96 MiB | 20.00 KiB/s
Writing objects: 100% (23005/23005), 1017.63 MiB | 1.88 MiB/s, done.
Total 23005 (delta 14999), reused 0 (delta 0)
fatal: The remote end hung up unexpectedly
Everything up-to-date

这个项目在我的本地机器上运行得很好。在

^{pr2}$

有什么我可以试试的吗?如果有什么不清楚的地方请告诉我。在


Tags: theto项目herokuobjectsremote错误error
1条回答
网友
1楼 · 发布于 2024-09-28 05:23:52

我也遇到了类似的问题,最后用下面的方法解决了:

看这里:Git push error: RPC failed; result=56, HTTP code = 200 fatal: The remote end hung up unexpectedly fatal

这个问题很可能是由于Git缓冲区太低而导致的,这对于项目。也许吧您可以尝试增加Git的HTTP缓冲区。

在git中试试这个:

git config http.postBuffer 524288000

这将把Git的缓冲区增加到524288000。

相关问题 更多 >

    热门问题