Apache with virtualenv and mod_wsgi : ImportError : No module named 'django'
问题 I'm trying to serve a little django project with the following Apache configuration : Apache virtualhost configuration : <VirtualHost *> ServerName servername [...] <Directory "/path/to/project/project"> <Files wsgi.py> Require all granted </Files> </Directory> WSGIDaemonProcess project python-path=/path/to/project:/path/to/Envs/venv/lib/python3.5/site-packages WSGIScriptAlias / /path/to/project/project/wsgi.py </VirtualHost> I also have the following wsgi.py : import os from django.core.wsgi