推送到heroku时出错:“找不到任何满足要求的下载pypm==1.3.4”
正如Django - failed to push some refs to [email protected]中所建议的,我做到了

"pip install --upgrade -r requirements.txt"

heroku无法从需求文件安装pypm包。
错误是:
下载/解包pypm==1.3.4(来自-r requirements.txt(第11行))
找不到任何满足要求的下载pypm==1.3.4(from-r requirements.txt(line1 1))。
找不到pypm==1.3.4的任何发行版(来自-r requirements.txt(第11行))
有人知道怎么解决这个问题吗?

最佳答案

pip install从pypi中提取包,此错误告诉您此版本的pypm未在此处列出。查看PyPi listing for pypm注意事项,pypm是activepython使用的包管理器,只有通过安装activepython才能使用。您应该从requirements.txt中删除此要求以部署到heroku。

关于python - 找不到满足要求pypm == 1.3.4的下载,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14420589/

10-11 20:00