You can install Celery either via the Python Package Index (PyPI) or from source.
To install the latest version using pip:
$ pip install celery
To install using easy_install:
$ easy_install celery
Downloading and installing from source
Download the latest version of Celery from http://pypi...
Installation
Additional dependencies are required for Redis support. Install both Celery and the dependencies in one go using the celery[redis] bundle:
$ pip install -U celery[redis]
Configuration
Configure the location of your Redis database:
BROKER_URL = 'redis://localhost:6379/0'
The UR...