1 votes

config.status : error : cannot find input file : `Makefile.in'

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/

1voto

Ian Suttle Points 2225

Je crois apxs est inclus dans apache2-dev Install apache2-dev . Je vous le suggère :

sudo apt-get install apache2-dev

Une fois qu'il a été installé et que ses dépendances sont installées, essayez configure encore. 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

SistemesEz.com

SystemesEZ est une communauté de sysadmins où vous pouvez résoudre vos problèmes et vos doutes. Vous pouvez consulter les questions des autres sysadmins, poser vos propres questions ou résoudre celles des autres.

Powered by:

X