web-dev-qa-db-ja.com

config.status:エラー:入力ファイルが見つかりません: `Makefile.in '

Ubuntu 12.04にmod_WSGIをインストールしようとしています。以下は、私がフォローしているコマンドのセットです。

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

ただし、。/ configureを実行すると、次の出力が表示されます。

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'

興味がある場合に備えて、このチュートリアルに従っています: http://www.lennu.net/2012/05/14/Django-deployement-installation-to-ubuntu-12-dot-04-server/

1
user171453

apxsApache2-devInstall Apache2-dev 。あなたがすることをお勧めします:

Sudo apt-get install Apache2-dev

それとその依存関係がインストールされたら、configureを再試行してください。私が得た:

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
1
chili555