我試圖從我的Linux服務器每隔5分鐘運行一次Twitter Python腳本,當我通過SSH手動運行它時,它完美地工作,但是當我嘗試使用cron運行它時,出現此錯誤信息。Python/Linux Cron
Traceback (most recent call last):
File "/home/celestia/public_html/monroe/twitter_follow_bot.py", line 222, in <module>
auto_follow("love",count=1)
File "/home/celestia/public_html/monroe/twitter_follow_bot.py", line 108, in auto_follow
dnf_list.append(int(line))
ValueError: invalid literal for int() with base 10: ''
線108 dnf_list.append(int(line))
這裏是源代碼 https://github.com/rhiever/twitter-follow-bot
我的cron作業看起來像這樣 */5 * * * * /usr/local/bin/python2.7 /home/celestia/public_html/elvis/twitter_follow_bot.py
來源是在這裏:https://github.com/rhiever/twitter-follow-bot –