Olá  Estou a utilizar python e apache. Instalei o Python24 e o Apache2. Já encontrei no fórum, alguns tópicos que me indicaram algumas configurações necessárias mas mesmo assim o apache continua a não executar.  Coloquei no ficheiro htttp.conf o seguinte:  LoadModule python_module modules/mod_python.so PythonOption mod_python.mutex_directory "/tmp"   <Directory "c:/wamp/apache2/cgi-bin">     Options Indexes FollowSymLinks MultiViews     AllowOverride AuthConfig     Order allow,deny     allow from all     </Directory>   AddHandler mod_python .py     PythonHandler mod_python.publisher     PythonDebug On    Para além desta configurações  <Directory "c:/wamp/apache2/cgi-bin">     Options Indexes FollowSymLinks MultiViews     AllowOverride AuthConfig     Order allow,deny     allow from all     </Directory>    Também já subtitui esta configuração por:  <Directory /var/www/html/teste/cgi-bin>       Options +ExecCGI       AddHandler cgi-script .py    </Directory>    O problema é que não tenho este ficheiro: cgi-script .py   Por isso o meu apache continua sem funcionar  Será que alguém me pode ajudar a fazer correctamente estas configurações. Eu nunca trabalhei com python é a primeira vez que estou a fazer este tipo de configuração por isso é provável que esteja em falta mais alguma coisa  :( .   Flávia