1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
Installation
============
You can install django-celery-beat either via the Python Package Index (PyPI)
or from source.
To install using `pip`,::
$ pip install --upgrade django-celery-beat
Installing the current default branch
-------------------------------------
$ python3 -m venv .venv
$ source .venv/bin/activate
$ pip install --upgrade pip
$ pip install git+https://github.com/celery/django-celery-beat.git
Downloading and installing from source
--------------------------------------
Download the latest version of django-celery-beat from
http://pypi.python.org/pypi/django-celery-beat
You can install it by doing the following,::
$ python3 -m venv .venv
$ source .venv/bin/activate
$ pip install --upgrade build pip
$ tar xvfz django-celery-beat-0.0.0.tar.gz
$ cd django-celery-beat-0.0.0
$ python -m build
$ pip install .
Using the development version
-----------------------------
With pip
~~~~~~~~
You can install the latest snapshot of django-celery-beat using the following
pip command::
$ pip install https://github.com/celery/django-celery-beat/zipball/master#egg=django-celery-beat
|