~ubuntu-branches/debian/sid/python-django/sid

« back to all changes in this revision

Viewing changes to INSTALL

  • Committer: Package Import Robot
  • Author(s): Luke Faraone, Jakub Wilk, Luke Faraone
  • Date: 2013-05-09 15:10:47 UTC
  • mfrom: (6.2.12 experimental)
  • Revision ID: package-import@ubuntu.com-20130509151047-g79qsrewg1yl43h5
Tags: 1.5.1-2
[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.

[ Luke Faraone ]
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Thanks for downloading Django.
2
2
 
3
 
To install it, make sure you have Python 2.5 or greater installed. Then run
 
3
To install it, make sure you have Python 2.6 or greater installed. Then run
4
4
this command from the command prompt:
5
5
 
6
6
    python setup.py install
7
7
 
 
8
If you're upgrading from a previous version, you need to remove it first.
 
9
 
8
10
AS AN ALTERNATIVE, you can just copy the entire "django" directory to Python's
9
11
site-packages directory, which is located wherever your Python installation
10
12
lives. Some places you might check are:
11
13
 
12
14
    /usr/lib/python2.7/site-packages (Unix, Python 2.7)
13
15
    /usr/lib/python2.6/site-packages (Unix, Python 2.6)
14
 
    /usr/lib/python2.5/site-packages (Unix, Python 2.5)
15
16
    C:\\PYTHON\site-packages         (Windows)
16
17
 
17
18
For more detailed instructions, see docs/intro/install.txt.