Example used in the blog post How to Use Celery and RabbitMQ with Django
git clone https://github.com/sibtc/django-celery-example.git
pip install -r requirements.txt
python manage.py migrate
python manage.py runserver
celery -A mysite worker -l info
Make sure you have RabbitMQ service running.
rabbitmq-server
For more info see the Blog post.