gpt4 book ai didi

python - 在 openshift 中导入 python 模块

转载 作者:行者123 更新时间:2023-11-28 17:36:33 24 4
gpt4 key购买 nike

我在 openshift 上运行了 Flask 应用程序,我正在尝试在程序中导入 requests 模块。我在 requirements.txt 中添加了依赖项,如 here 所述.

我的 requirements.txt 包含以下条目。

Flask==0.10.1
Requests=2.6.0

我得到了 500 : Internal Server Error 并且在 rhc tail 上我得到了

ImportError: No module named requests

我错过了什么吗?

更新:requirements.txt 中有错误,是== 而不是=。

requirements.txt 的正确版本应该是这样的。

Flask==0.10.1
Requests==2.6.0

但是我仍然面临问题,因为在 git push 上我的日志状态。

remote: Could not find a version that satisfies the requirement Requests==2.6.0 (from -r /var/lib/openshift/xxxxxxxxxxxxxxxxxxx/app-root/runtime/repo/requirements.txt (line 2)) (from versions: 0.10.0, 0.10.1, 0.10.2, 0.10.3, 0.10.4, 0.10.6, 0.10.7, 0.10.8, 0.11.1, 0.11.2, 0.12.0, 0.12.1, 0.13.0, 0.13.1, 0.13.2, 0.13.3, 0.13.4, 0.13.5, 0.13.6, 0.13.7, 0.13.8, 0.13.9, 0.14.0, 0.14.1, 0.14.2, 0.2.0, 0.2.1, 0.2.2, 0.2.3, 0.2.4, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4, 0.4.0, 0.4.1, 0.5.0, 0.5.1, 0.6.0, 0.6.1, 0.6.2, 0.6.3, 0.6.4, 0.6.5, 0.6.6, 0.7.0, 0.7.1, 0.7.2, 0.7.3, 0.7.4, 0.7.5, 0.7.6, 0.8.0, 0.8.1, 0.8.2, 0.8.3, 0.8.4, 0.8.5, 0.8.6, 0.8.7, 0.8.8, 0.8.9, 0.9.0, 0.9.1, 0.9.2, 0.9.3, 1.0.0, 1.0.1, 1.0.2, 1.0.3, 1.0.4, 1.1.0, 1.2.0, 1.2.1, 1.2.2, 1.2.3, 2.0.0, 2.0.1, 2.1.0, 2.2.0, 2.2.1, 2.3.0, 2.4.0, 2.4.1, 2.4.2, 2.4.3, 2.5.0, 2.5.1) remote: Cleaning up...

替代解决方案:您可以通过 SSH 连接您的应用程序,并可以使用 pip 手动安装包,如本 thread 中所回答的那样.

最佳答案

你应该放两个等号:

Flask==0.10.1
Requests==2.5.1

Requests>=2.5.1

或者,正如@Paco 所建议的那样,

Requests 

注意:添加没有版本号的包通常不是一个好主意。如果发布了较新的版本并且该版本破坏了兼容性,那么在您下次运行时(直接或在构建项目时),它可能会破坏一切。

关于python - 在 openshift 中导入 python 模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29864321/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com