django-authority/docs/installation.txt

44 lines
1.2 KiB
Text
Raw 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 `Bitbucket account`_. You
can checkout the package using the Mercurial_ scm::
2009-07-10 19:28:46 +00:00
hg clone http://bitbucket.org/jezdez/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.
.. _Bitbucket account: http://bitbucket.org/jezdez/django-authority/
2009-07-12 19:31:00 +00:00
.. _Mercurial: http://www.selenic.com/mercurial/