running python script with cron
- by paulo
hey guys, im trying to run a python script after every 5 minutes using cron, inside the script is a django import
import django
when running the crontab i get mailed the following error
ImportError: No module named django
this is what the crontab file looks like:
MAILTO=commonzenpython@gmail.com
*/5 * * * * /usr/bin/python…