I tried to install django to work with apache and mod_wsgi but get this error:
ImportError: No module named django.core.handlers.wsgi,
I\'v rea
Wrong:
WSGIDaemonProcess www.example.com python-path=~/virtualenvs/virt1/lib/python2.7
Right:
WSGIDaemonProcess www.example.com python-path=/home/user/virtualenvs/virt1/lib/python2.7
I spent way too much time trying to figure out why my virtualenv wasn't loading django properly.