12345678910111213141516171819 |
- Installing celery
- =================
- You can install ``celery`` either via the Python Package Index (PyPI)
- or from source.
- To install using ``pip``,::
- $ pip install celery
- To install using ``easy_install``,::
- $ easy_install celery
- If you have downloaded a source tarball you can install it
- by doing the following,::
- $ python setup.py build
-
|