installation.txt 698 B

123456789101112131415161718192021222324252627282930
  1. You can install Celery either via the Python Package Index (PyPI)
  2. or from source.
  3. To install using `pip`,::
  4. $ pip install Celery
  5. To install using `easy_install`,::
  6. $ easy_install Celery
  7. Downloading and installing from source
  8. --------------------------------------
  9. Download the latest version of `celery` from
  10. http://pypi.python.org/pypi/celery/
  11. You can install it by doing the following,::
  12. $ tar xvfz celery-0.0.0.tar.gz
  13. $ cd celery-0.0.0
  14. $ python setup.py build
  15. # python setup.py install # as root
  16. Using the development version
  17. ------------------------------
  18. You can clone the repository by doing the following::
  19. $ git clone https://github.com/celery/celery