0
我在ubuntu服務器的學習階段。我有一個python腳本,每天早上給我發送天氣,當我從命令行運行腳本時,該腳本完美地工作。但是,當我嘗試設置一個crontab項時,它不起作用。下面一行是我把我的crontab文件:crontab無法運行python腳本(手動運行正常)
30 11 * * * cd /home/ubuntu/documents && /usr/bin/python /home/ubuntu/documents/weatherText.py
我也試過如下:
30 11 * * * /usr/bin/python /home/ubuntu/documents/weatherText.py
當我鍵入以下任一命令到終端,我的Python腳本的偉大工程。
1.) cd /home/ubuntu/documents && /usr/bin/python /home/ubuntu/documents/weatherText.py
2.) /usr/bin/python /home/ubuntu/documents/weatherText.py
它必須是cron的問題,對吧?感謝您的時間,如果你現在正在查看這個。
你檢查過cron的日誌文件嗎? –
@MattSchuchard我將它們添加到我的文章! – mattp341