作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 OpenShift 应用程序启动时运行某个 python 文件。我尝试了很多东西,比如在 wsgi.py 文件中运行 execfile("thefilename.py")
这没有用!
我希望能得到一些帮助!非常感谢!
最佳答案
从 bash 脚本运行。
#!/bin/bash
export LD_LIBRARY_PATH="/opt/rh/python33/root/usr/lib64"
export PATH="/var/lib/openshift/<your ssh id>/python//virtenv/venv/bin:/var/lib/openshift/<your ssh id>/python//bin:/opt/rh/python33/root/usr/bin:/bin:/usr/bin:/usr/sbin"
source ${VIRTUAL_ENV}/bin/activate
python pathtofile/yourfile.py
关于openshift - 如何让 Python Openshift 运行某个 Python 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36509781/
我是一名优秀的程序员,十分优秀!