J'essaie d'installer mod_WSGI sur Ubuntu 12.04. Voici l'ensemble des commandes que je suis en train de suivre :
wget http://modwsgi.googlecode.com/files/mod_wsgi-3.4.tar.gz
tar xvfz mod_wsgi-3.4.tar.gz
cd mod_wsgi-3.4
./configure
make
make install
echo "LoadModule wsgi_module /usr/lib/apache2/modules/mod_wsgi.so" > /etc/apache2/mods-available/wsgi.load
a2enmod wsgi
a2dissite default
Cependant, lorsque je fais ./configure, cela me donne cette sortie :
checking for apxs2... no
checking for apxs... no
checking Apache version... ./configure: line 1747: apxs: command not found
./configure: line 1747: apxs: command not found
./configure: line 1748: apxs: command not found
./configure: line 1751: /: Is a directory
checking for python... /usr/bin/python
./configure: line 1920: apxs: command not found
configure: creating ./config.status
config.status: error: cannot find input file: `Makefile.in'
Je suis ce tutoriel au cas où vous seriez curieux : http://www.lennu.net/2012/05/14/django-deployement-installation-to-ubuntu-12-dot-04-server/