2016-08-06 40 views
2

我试图在heroku上部署flask应用程序。具体而言,根据this解决方案,NLTK数据到服务器。出于某种原因,我不断收到此错误。所以我尝试创建一个新的Heroku项目并推送我的本地项目,但仍然陷入了同样的错误。错误:RPC失败; curl 6 SSL阅读:错误:00000000:lib(0):func(0):原因(0),错误

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 

这个项目在我的本地机器上完美工作。

C:\Users\mysys\mywebservices-test\warm-sierra-60310>python app.py 
* Running on http://127.0.0.1:5000/ 
* Restarting with reloader 
127.0.0.1 - - [06/Aug/2016 23:05:38] "GET/HTTP/1.1" 200 - 
127.0.0.1 - - [06/Aug/2016 23:05:40] "GET/HTTP/1.1" 200 - 

有什么我可以尝试吗?让我知道如果有什么不清楚的。

回答

相关问题