I am trying to configure django-crontab by following this article, I have done all the setting but when I am trying to add cron job by the following command, I am not able to add the job.
Django Version: 1.8.1 django-crontab: 0.7.1
Command Used:
python manage.py crontab add
ERROR MESSAGE:
Unknown command: 'crontab'
Type 'manage.py help' for usage.
Check your pip packages and
INSTALLED_APPS
. In my project I had typeddjango_cron
instead ofdjango_crontab
.django_cron
is a different package than the instructions you linked to.