summaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2011-06-09 20:01:28 +0000
committerRamiro Morales <cramm0@gmail.com>2011-06-09 20:01:28 +0000
commitdff31de20aac85e4f4834c2466762cbf23fc0a7b (patch)
tree6d7d6756f53eb599b81827bf097f24cfb1ed7b54 /INSTALL
parentda0c7cd7778ee99a31587276faee30e94a8255ae (diff)
downloaddjango-dff31de20aac85e4f4834c2466762cbf23fc0a7b.tar.gz
Fixed #16155 -- Removed Python 2.4 compatibility constructs from code and mentions from docs. Thanks Aymeric Augustin for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16349 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL5
1 files changed, 3 insertions, 2 deletions
diff --git a/INSTALL b/INSTALL
index 644c524bbb..4a36c901a1 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,6 +1,6 @@
Thanks for downloading Django.
-To install it, make sure you have Python 2.4 or greater installed. Then run
+To install it, make sure you have Python 2.5 or greater installed. Then run
this command from the command prompt:
python setup.py install
@@ -9,8 +9,9 @@ AS AN ALTERNATIVE, you can just copy the entire "django" directory to Python's
site-packages directory, which is located wherever your Python installation
lives. Some places you might check are:
+ /usr/lib/python2.7/site-packages (Unix, Python 2.7)
+ /usr/lib/python2.6/site-packages (Unix, Python 2.6)
/usr/lib/python2.5/site-packages (Unix, Python 2.5)
- /usr/lib/python2.4/site-packages (Unix, Python 2.4)
C:\\PYTHON\site-packages (Windows)
For more detailed instructions, see docs/intro/install.txt.