前几天,我试图将我的应用程序部署到Heroku,但我发现了一个错误:
采集ikp3db==1.4 找不到满足需求ikp3db==1.4的版本
ikp3db==1.4是什么意思?我尝试从我的requirements.txt文件中删除它并成功地推送,尽管默认页面的加载速度非常慢。
如何解决这个问题,以便正确部署应用程序?
对于上下文,我正在尝试推动一个带有Socket.io的烧瓶应用程序。
以下是部署日志的相关部分:
remote: -----> Python app detected
remote: -----> Installing requirements with pip
remote: Collecting ikp3db==1.4 (from -r /tmp/build_6a70450c1a3e03480c6a367846a7a630/requirements.txt (line 37))
remote: Could not find a version that satisfies the requirement ikp3db==1.4 (from -r /tmp/build_6a70450c1a3e03480c6a367846a7a630/requirements.txt (line 37)) (from versions: 1.0, 1.1, 1.1.2, 1.1.3, 1.1.4)
remote: No matching distribution found for ikp3db==1.4 (from -r /tmp/build_6a70450c1a3e03480c6a367846a7a630/requirements.txt (line 37))
remote: ! Push rejected, failed to compile Python app.
remote:
remote: ! Push failedhttps://stackoverflow.com/questions/52240967
复制相似问题