summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2006-05-17 02:39:52 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2006-05-17 02:39:52 +0000
commit93201c89b4ff6e984b7bbfd51d4814263f293b2d (patch)
tree322b54035cbbd965e6ab833606b1aafe67a3b85f /docs
parent268462d686959d8219c1a828ee6850293d45ab67 (diff)
Changed the link the "official tarball" to refer to the 0.91 release and added
a warning about the development version being preferred. Thanks to Todd O'Bryan for pointing out the misinformation. git-svn-id: http://code.djangoproject.com/svn/django/trunk@2930 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/install.txt14
1 files changed, 11 insertions, 3 deletions
diff --git a/docs/install.txt b/docs/install.txt
index 51746e001d..800c49b596 100644
--- a/docs/install.txt
+++ b/docs/install.txt
@@ -77,9 +77,9 @@ It's easy either way.
Installing the official version
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-1. Download Django-0.92.tar.gz from our `download page`_.
-2. ``tar xzvf Django-0.92.tar.gz``
-3. ``cd Django-0.92``
+1. Download Django-0.91.tar.gz from our `download page`_.
+2. ``tar xzvf Django-0.91.tar.gz``
+3. ``cd Django-0.91``
4. ``sudo python setup.py install``
Note that the last command will automatically download and install setuptools_
@@ -89,6 +89,14 @@ connection.
This will install Django in your Python installation's ``site-packages``
directory.
+.. note::
+
+ Due to recent backwards-incompatible changes, it is strongly recommended
+ that you use the development version (below) for any new applications or
+ if you are just starting to work with Django. The 0.91 release is a
+ dead-end branch that is primarily of use for supporting legacy Django
+ applications.
+
.. _setuptools: http://peak.telecommunity.com/DevCenter/setuptools
Installing the development version