I encoded a python application that worked fine as a cron job. Later, I added several libraries (for example, pynotifyothers *), because I wanted to receive a notification with a message about what was happening, but it seems that cron cannot start such an application.
Do you know any alternative how to run this application every five minutes? I am using Xubuntu.
import gtk, pygtk, os, os.path, pynotify
I run the application without cron without any problems.
Cron seems to be launching the application, but it does not display a notification message. There /var/log/cron.logare no errors. The application ran every minute without any problems.
my crontab:
*/1 * * * * /home/xralf/pythonsrc/app
Thank you
xralf source
share