从系统调度程序运行时 Python 不存在
我制作了一个运行 Python 应用程序的批处理脚本。这个批处理脚本是由一个叫做System Scheduler的程序触发的,但是当程序运行批处理脚本时,却说Python不存在。
当我手动运行批处理脚本时,没有收到任何错误。
任何人都可以解释这一点或提出解决方案吗?
I have made a batch script which runs a Python application. This batch script is triggered by a program called System Scheduler, but when the program runs the batch script, it says that Python is not exisiting.
When I run my batch script manually, I get no error.
Can anyone explain this or come up with a solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从调度程序调用时,$PATH 可能未正确设置。 命令更改为
尝试将名为from 的
(替换系统上 python 的实际路径,您可以使用以下命令找到该路径:
Probably the $PATH is not set properly when called from scheduler. Try changing the command called from
to
(Substitute the actual path to python on your system, which you can find with:
检查系统调度程序正在运行的用户上下文,并确保 Python 的位置位于其 PATH 中。
Check the user context that System Scheduler is running under and ensure the location of Python is in it's PATH.