Mod_wsgi Isn't Honoring WSGIPythonHome
I'm trying to get WSGI to run with a virtualenv setup. I have the virtualenv all working right: (virtualenv)dev:/var/www/app$ which python /var/www/virtualenv/bin/python (virtualen
Solution 1:
Your mod_wsgi is likely compiled against a different Python version than you are trying to force it to use. For example, you can not use mod_wsgi compiled against Python 2.4 with a virtual environment constructed using Python 2.6.
Validate what version of Python mod_wsgi was built for in the first place.
Post a Comment for "Mod_wsgi Isn't Honoring WSGIPythonHome"