http://www.djangoproject.com/documentation/install/
"Installing the official version"
currenty:
1. Check the distribution specific notes to see if your platform/distribution provides official Django packages/installers. Distribution-provided packages will typically allow for automatic installation of dependancies and easy upgrade paths.
2. Download the latest release from our download page.
3. Untar the downloaded file (e.g. tar xzvf Django-NNN.tar.gz).
4. Change into the downloaded directory (e.g. cd Django-NNN).
5. Run sudo python setup.py install.
suggested:
Use either A or B:
A. Package
1. Check the distribution specific notes to see if your platform/distribution provides official Django packages/installers. Distribution-provided packages will typically allow for automatic installation of dependancies and easy upgrade paths.
B. Tarbal
1. Download the latest release from our download page.
2. Untar the downloaded file (e.g. tar xzvf Django-NNN.tar.gz).
3. Change into the downloaded directory (e.g. cd Django-NNN).
4. Run sudo python setup.py install.
Might also want to add "C. using ez_install"