Changes between Initial Version and Version 1 of Distributions


Ignore:
Timestamp:
Mar 6, 2009, 7:58:19 PM (15 years ago)
Author:
Tim Graham
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Distributions

    v1 v1  
     1= Third-party distributions of Django =
     2
     3Many 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.
     4
     5Typically, 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.
     6
     7== FreeBSD ==
     8
     9The 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.
     10
     11== Linux distributions ==
     12
     13=== Debian ===
     14
     15[http://packages.debian.org/search?searchon=names&keywords=python-django all Debian releases], see the [http://www.debian.org/doc/user-manuals#apt-howto APT HOWTO] for instructions
     16
     17=== Fedora ===
     18
     19[https://admin.fedoraproject.org/pkgdb/packages/name/Django Package]
     20
     21=== Gentoo ===
     22
     23[http://packages.gentoo.org/package/django Package]
     24
     25=== RPM Based Distributions ===
     26
     27[http://rpmfind.net/linux/rpm2html/search.php?query=django from rpmfind.net]
     28
     29=== Ubuntu ===
     30
     31[http://packages.ubuntu.com/search?searchon=names&keywords=python-django all Ubuntu releases], see also [https://help.ubuntu.com/ Ubuntu documentation] on "Adding and Removing Software"
     32
     33== Mac OS X ==
     34
     35=== MacPorts ===
     36
     37Django 0.96 can be installed via the MacPorts system. If you’re using Python 2.4, type sudo port install py-django-devel. For Python 2.5, type sudo port install py25-django-devel. MacPorts can also be used to install a database, and the Python interface to your chosen database.
Back to Top