| 12345678910111213141516171819 | Installing Celery=================You can install Celery either via the Python Package Index (PyPI)or from source.To install using `pip`::    $ pip install CeleryTo install using `easy_install`::    $ easy_install CeleryIf you have downloaded a source tarball you can install itby doing the following::    $ python setup.py build    # python setup.py install # as root
 |