Changes between Version 29 and Version 30 of Distributions


Ignore:
Timestamp:
Aug 20, 2015, 1:24:32 PM (9 years ago)
Author:
sidrg
Comment:

FreeBSD is using pkgng for quite some time; *BSD is UNIX; Mac OS X is UNIX too; form

Legend:

Unmodified
Added
Removed
Modified
  • Distributions

    v29 v30  
    99The [http://bitnami.org/stack/djangostack BitNami Django Stack] is a free distribution which includes ready-to-run versions of Apache, MySQL, PostgreSQL, SQLite, Python, Django and required dependencies. It can be deployed using a native installer, as a virtual machine or in the cloud.
    1010
    11 
    12 == FreeBSD ==
    13 
    14 There are two options:
    15 
    16  * To install the port: `cd /usr/ports/www/py-django/ && make install clean`
    17  * To add the package: `pkg_add -r py26-django`
    18 
    19 For recent changes [http://www.freshports.org/www/py-django/]
    20 
    21 == NetBSD ==
    22 
    23 There are two options:
    24 
    25  * To add the binary package: `pkg_add py27-django`
    26  * To install the package from source: `cd /usr/pkgsrc/www/py-django/ && make install clean`
    27 
    28 For recent changes [http://pkgsrc.se/www/py-django/]
    29 
    30 == OpenBSD ==
    31 
    32 There are two options:
    33 
    34  * Install as package: `pkg_add py-django`
    35  * Installation over ports system: `cd /usr/ports/www/py-django; sudo make; sudo make install`
    36 
    37 For recent changes [http://openports.se/www/py-django]
    38 
    3911== Linux distributions ==
    40 
    4112
    4213=== Archlinux ===
     
    4516
    4617Installed using the following command with root privileges
    47 pacman -S python2-django
    48 
     18`pacman -S python2-django`
    4919
    5020=== Debian ===
     
    6939and typing 'zypper install python-django'. Alternatively, you can use a [http://software.opensuse.org/search?q=python-django one-click-install link].
    7040
    71 
    7241=== RPM Based Distributions ===
    7342
     
    7847While the Django documentation recommends starting a Django project outside of the web server's document root (e.g. '''/var/www'''), SELinux does not allow web servers such as Apache access outside of their document roots.  See also: [http://www.packtpub.com/article/selinux-secured-web-hosting-python-based-web-applications SELinux - Highly Secured Web Hosting for Python-based Web Applications].
    7948
    80 
    8149=== Ubuntu ===
    8250
    8351[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"
    8452
    85 == Mac OS X ==
     53== UNIX distributions ==
    8654
    87 === Mac``Ports ===
     55=== FreeBSD ===
     56
     57There are two options:
     58
     59 * To add the package: `pkg install py-django`
     60 * To install the port: `cd /usr/ports/www/py-django/ && make install clean`
     61
     62For recent changes [http://www.freshports.org/www/py-django/]
     63
     64=== NetBSD ===
     65
     66There are two options:
     67
     68 * To add the binary package: `pkg_add py27-django`
     69 * To install the package from source: `cd /usr/pkgsrc/www/py-django/ && make install clean`
     70
     71For recent changes [http://pkgsrc.se/www/py-django/]
     72
     73=== Mac OS X ===
     74
     75==== Mac``Ports ====
    8876
    8977Django can be installed via the Mac``Ports system:
     
    114102Be sure to change the last path to reflect the version of Python on your system.
    115103
    116 === Rudix ===
     104==== Rudix ====
    117105
    118106The [http://rudix.org Rudix] package system for OS X has ready to download DMG files, containing a standard PKG installer. Rudix takes care to play nicely with the default Python installation. Admin utils and documentation will go to /usr/local.
     107
     108=== OpenBSD ===
     109
     110There are two options:
     111
     112 * Install as package: `pkg_add py-django`
     113 * Installation over ports system: `cd /usr/ports/www/py-django; sudo make; sudo make install`
     114
     115For recent changes [http://openports.se/www/py-django]
Back to Top