I\'ve deployed Django to Apache via mod_wsgi. Django is running fine when hosted from Apache. However, I\'m trying to do some maintenance via manage.py
mod_wsgi
manage.py
For me it was actually the PATH, so the project wasn't inside the path, I did this:
export PYTHONPATH=/var/www/project:$PYTHONPATH
If it's a local project it might be something like this:
export PYTHONPATH=~/my-project:$PYTHONPATH
Questions? comment and I'll answer.