Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Having trouble installing mod_WSGI - can't find input file

Tags:

mod-wsgi

I'm trying to set up mod_wsgi for use with Django. I have apache2, apache2-dev, python2.6, python2.6-dev all installed, but I'm getting this error when running configure:

checking for apxs2... /usr/bin/apxs2
checking Apache version... 2.2.14
checking for python... /usr/bin/python
configure: creating ./config.status
config.status: error: cannot find input file: Makefile.in

Thanks for the help!

like image 204
Nelson Avatar asked Dec 11 '10 21:12

Nelson


1 Answers

I had the exact same problem. Installing the apache2-dev package solved it.

sudo apt-get install apache2-dev

I don't think the asker needs this answer anymore, so I answered for future readers with similar problems

like image 179
Fábio Santos Avatar answered Oct 11 '22 23:10

Fábio Santos