Changes between Version 7 and Version 8 of Distributions


Ignore:
Timestamp:
Mar 27, 2009, 2:38:06 PM (15 years ago)
Author:
Arthur Koziel
Comment:

Updated installation instructions for MacPorts

Legend:

Unmodified
Added
Removed
Modified
  • Distributions

    v7 v8  
    5050=== MacPorts ===
    5151
    52 Django can be installed via the MacPorts system. If you’re using Python 2.5, type sudo port install py25-django. For Python 2.6, type sudo port install py26-django. Django for Python 2.4 can be installed with sudo port install py-django. MacPorts can also be used to install a database and the Python interface to your chosen database.
     52Django can be installed via the MacPorts system:
     53
     54 * '''Python 2.4''': `sudo port install py-django`
     55 * '''Python 2.5''': `sudo port install py25-django`
     56 * '''Python 2.6''': `sudo port install py26-django`
     57
     58Please note that `django-admin.py` is renamed according to the Python
     59version you installed it for (`django-admin-2.5.py` if you
     60installed py25-django).
     61
     62To enable bash completion append install the `bash_completion` variant (`sudo port install py25-django +bash_completion`).
Back to Top