django-authority/docs/installation.txt

44 lines
1.2 KiB
Text
Raw Permalink Normal View History

2009-07-10 19:28:46 +00:00
.. _installation:
============
Installation
============
The installation of django-authority is easy. Whether you want to use the
2009-07-12 19:31:00 +00:00
latest stable or development version, you have the following options.
2009-07-10 19:28:46 +00:00
The latest stable version
=========================
The latest, stable version is always available via the `Python package index_`
(PyPI). You can download the latest version on `the site`_ but most users
2009-07-10 19:28:46 +00:00
would prefer either ``pip`` or ``easy_install``::
pip install django-authority
2011-02-21 17:04:31 +00:00
2009-07-10 19:28:46 +00:00
# .. or with easy_install:
2011-02-21 17:04:31 +00:00
2009-07-10 19:28:46 +00:00
easy_install django-authority
.. _the site: http://pypi.python.org/pypi/django-authority/
.. _Python package index: http://pypi.python.org/pypi
2009-07-10 19:28:46 +00:00
Development version
===================
The latest development version is located on it's `Github account`_. You
2016-12-17 16:26:32 +00:00
can checkout the package using the Git_ scm::
2009-07-10 19:28:46 +00:00
2016-05-11 12:49:15 +00:00
git clone https://github.com/jazzband/django-authority
2009-07-10 19:28:46 +00:00
Then install it manually::
cd django-authority
python setup.py install
.. warning:: The development version is not fully tested and may contain
bugs, so we prefer to use the latest package from pypi.
2016-05-11 12:49:15 +00:00
.. _Github account: https://github.com/jazzband/django-authority/
2016-12-17 16:26:32 +00:00
.. _Git: http://gitscm.org/