Installieren Sie apache2-dev für mod_wsgi

Installieren Sie apache2-dev für mod_wsgi

Ich bin ein völliger Neuling bei Linux, habe aber eine Python3-Django-Anwendung entwickelt, die ich auf einem Apache-Webserver unter Debian 7.8 bereitstellen soll.

Dazu folge ich den Django-Richtlinien, die mir sagen, dass ich mod_wsgi installieren soll mitdieses Tutorial.

Wenn ich ./configure ausführe, erhalte ich Folgendes:

$ ./configure --with-python=/usr/local/bin/python3
checking for apxs2... no
checking for apxs... no
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for prctl... yes
checking Apache version... ./configure: line 2765: apxs: command not found
./configure: line 2765: apxs: command not found
./configure: line 2766: apxs: command not found
./configure: line 2769: /: Is a directory

./configure: line 2964: apxs: command not found
configure: creating ./config.status
config.status: creating Makefile

Ich habe versucht, apache2-dev beim Ausführen zu installieren, apt-get install apache2-devaber es gibt mir nur E: Unable to locate package apache2-dev.

Wo kann ich apxs2 bekommen?

Antwort1

Ich glaube, dass apache2-dev ein virtuelles Paket ist, das von apache2-threaded-dev bereitgestellt wird. Wenn Sie es installieren, sollten Sie bekommen, was Sie brauchen.

verwandte Informationen