CADAC/DjangoSetup

From this handy blog posting.

tar -zxf httpd-2.2.8.tar.gz 
  503  cd httpd-2.2.8/
  504  ls
  505  ./configure –-enable-so –-with-mpm=worker
  506  ./configure --enable-so --with-mpm=worker
  507  make
  508  sudo make install
  509  cd ..
  510  wget http://www.apache.org/dist/httpd/modpython/mod_python-3.3.1.tgz
  511  tar -zxf mod_python-3.3.1.tgz 
  512  cd mod_python-3.3.1/
  513  ls
  514  ./configure --with-apxs=/usr/local/apache2/bin/apxs --with-python=/usr/local/bin/python
  515  make
  516  sudo make install
  517  history
cable:~/packages/mod_python-3.3.1 rpwagner$