Version 9 (modified by Arthur Koziel, 15 years ago) ( diff )

typo

Third-party distributions of Django

Many third-party distributors are now providing versions of Django integrated with their package-management systems. These can make installation and upgrading much easier for users of Django since the integration includes the ability to automatically install dependencies (like database adapters) that Django requires.

Typically, these packages are based on the latest stable release of Django, so if you want to use the development version of Django you’ll need to follow the instructions for installing the development version from our Subversion repository.

FreeBSD

The FreeBSD ports system offers both Django 0.96 (py-django) and a more recent, but not current, version based on Django’s trunk (py-django-devel). These are installed in the normal FreeBSD way; for Django 0.96, for example, type: cd /usr/ports/www/py-django && sudo make install clean.

Linux distributions

Archlinux

There are two options available for a repository-controlled installation of django. The first option is the availability of django in the 'extra' repository. The availability of this repository on the system allows for the package to be installed with the magic of 'pacman -S django'. The second option is to install an svnbuild of the package. This package can be found on the Archlinux AUR, and can be easily installed with the yaourt program. Using yaourt as a user with sudo access allows for a relative safe way to install user-made packages. There are multiple other django packages on the AUR. You have for example the django-utils package that can be installed in a similar fashion using yaourt.

Debian

The Debian package is named python-django and can be installed using the following command with root privileges.

aptitude install python-django

all Debian releases, see Debian Reference • Chapter 6 – Debian package management for instructions

Fedora

Package

Gentoo

Package

openSUSE

A Django package is available for openSUSE Linux in the openSUSE Build Service. The current package can be installed by subscribing to the devel:languages:python project and typing 'zypper install python-django'. Alternatively, you can use a one-click-install link.

RPM Based Distributions

from rpmfind.net

Ubuntu

all Ubuntu releases, see also Ubuntu documentation on "Adding and Removing Software"

Mac OS X

MacPorts

Django can be installed via the MacPorts system:

  • Python 2.4: sudo port install py-django
  • Python 2.5: sudo port install py25-django
  • Python 2.6: sudo port install py26-django

Please note that django-admin.py is renamed according to the Python version you installed it for (django-admin-2.5.py if you installed py25-django).

To enable bash completion install the bash_completion variant (sudo port install py25-django +bash_completion).

Note: See TracWiki for help on using the wiki.
Back to Top