Archive

Archive for August 31st, 2006

Installing Django on Ubuntu 6.06

August 31st, 2006 3 comments

Steps for install Django on Dapper Drake with Apache2, MySQL5, and Python2.4 already installed:

  1. sudo apt-get install libapache2-mod-python python-mysqldb python-docutils
  2. wget http://www.djangoproject.com/download/0.95/tarball/
  3. tar xfz Django-0.95.tar.gz
  4. cd Django-0.95
  5. sudo python ez_setup.py
  6. sudo python setup.py install
  7. start creating a Django app

Other notes:

  • python-setuptools included with Dapper is not recent enough for Django 0.95
Categories: server, software, web design