J'essaie d'installer mod_WSGI sur Ubuntu 12.04. Voici l'ensemble des commandes que je suis:
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, quand je fais ./configure, il 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ù tu serais curieux: http://www.lennu.net/2012/05/14/Django-deployement-installation-to-ubuntu-12-dot-04-server/
Je crois que apxs
est inclus dans Apache2-dev . Je vous suggère de faire:
Sudo apt-get install Apache2-dev
Une fois celui-ci et ses dépendances installés, essayez à nouveau configure
. J'ai eu:
chili@T410:~/mod_wsgi-3.4$ ./configure
checking for apxs2... /usr/bin/apxs2
checking Apache version... 2.X
checking for python... /usr/bin/python
configure: creating ./config.status
config.status: creating Makefile