Python Subprocess仅在cron中返回非零退出状态

前端之家收集整理的这篇文章主要介绍了Python Subprocess仅在cron中返回非零退出状态前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个 Python脚本,管理一系列 CasperJS任务并处理结果.它从命令行运行良好,但是当我在cron中运行脚本时,我收到错误
CalledProcessError: Command '['/path/to/casperjs','/path/to/doSomething.js','args']' returned non-zero exit status 1

在Python中,我称之为CasperJS:

response = subprocess.check_output(['/path/to/casperjs','args'],shell=True)

我也试过shell = False和Popen,但是得到了相同的结果.我也尝试使整个命令成为一个字符串(而不是列表),但这也没有帮助.

在shell中运行时,运行’/ path / to / casperjs /path/to/doSomething.js args’会返回退出代码0.

我还将PATH = /usr/bin:/ bin:/ sbin:/usr/local / bin添加到我的crontab中无济于事. (如this question所示.)

任何想法为什么我只在cron中得到这个错误?谢谢!!

编辑:根据下面的答案,设置shell = False和stderr = subprocess.STDOUT使一切正常…

解决方法

您应该尝试捕获除stdout之外的stderr,以便您可以确切地知道程序失败的原因(假设它确实为您打印了一些错误)
cmd = ['/path/to/casperjs','args']
response = subprocess.check_output(cmd,shell=True,stderr=subprocess.STDOUT)
原文链接:https://www.f2er.com/python/241911.html

猜你在找的Python相关文章