Talvez você precise instalar o libapache2-mod-python primeiro?
sudo apt-get install libapache2-mod-python
Estou tentando configurar um trac, eu digitei as seguintes linhas
<Location /trac/[[:alnum]]+/login">
AuthType Basic
AuthName "Subversion Repository"
AuthUserFile /etc/apache2/dav_svn.passwd
Require valid-user
</Location>
<Location /trac>
SetHandler mod_python
PythonInterpreter main_interpreter
PythonHandler trac.web.modpython_frontend
PythonOption TracEnvParentDir /var/www/trac
PythonOption TracUriRoot /trac
</Location>
neste arquivo,
/etc/apache2/sites-enabled/000-default
mas quando estou tentando reiniciar o servidor apache, recebo o seguinte erro:
Syntax error on line 50 of /etc/apache2/sites-enabled/000-default:
Invalid command 'PythonInterpreter', perhaps misspelled or defined by a module not included in the server configuration
Talvez você precise instalar o libapache2-mod-python primeiro?
sudo apt-get install libapache2-mod-python