Last active
May 11, 2017 07:28
-
-
Save linuxkathirvel/c7683e4121badaa69c3ea2eb75f7dca5 to your computer and use it in GitHub Desktop.
Steps to setup Celery in Django
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Step 1 | |
# Install Redis server | |
sudo apt-get install redis-server | |
# Please confirm with 'redis-cli ping' command. If that display 'PONG', it is working fine. | |
# Step 2 | |
pip install celery redis | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment