我尝试在 Debian Jessie Raspberry Pi 上使用 cron 执行 Python 脚本,但没有成功。
我可以手动执行该脚本,但无法使用 cron 执行。
显示内容如下crontab -l
:
*/2 * * * * /usr/bin/python2 home/pi/Documents/get_temperature.py
我猜想 cron 上下文中的路径有问题,但我无法找到问题所在。
答案1
您给出的文件路径看起来像是绝对路径,但未以( )get_temperature.py
开头。/
/home
除非您home/pi/Documents/get_temperature.py
在所有者的主目录中crontab
,否则需要更正路径:
*/2 * * * * /usr/bin/python2 /home/pi/Documents/get_temperature.py