Estou tentando colocar um site do django em funcionamento usando o WSGI. A caixa está executando o centos 5 com o python 2.6.
Eu estou tentando usar a distribuição anaconda a partir de análises contínuas instaladas em / usr / local / lib / anaconda /.
Eu construí o mod_wsgi com ./configure --with-python = / usr / local / lib / anaconda / bin / python /
Eu adicionei o seguinte ao /etc/httpd/conf/httpd.conf:
<Directory "/var/www/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
#wsgi-scripts
WSGIPythonHome /usr/local/lib/anaconda/bin
WSGIScriptAlias /test /var/www/wsgi-scripts/test
<Directory "/var/www/wsgi-scripts">
Order allow,deny
Allow from all
</Directory>
mas estou recebendo falhas de importação da seguinte forma:
[Fri Mar 08 16:44:24 2013] [notice] Apache/2.2.15 (Unix) DAV/2 PHP/5.3.3 mod_wsgi/3.4
Python/2.7.3 configured -- resuming normal operations
[Fri Mar 08 16:44:24 2013] [info] Server built: Feb 13 2012 22:31:42
ImportError: No module named site
Could not find platform independent libraries <prefix>
Could not find platform dependent libraries <exec_prefix>
Alguém poderia indicar qual é o meu problema?
Tags apache-2.2 mod-wsgi