I have a Django project with one app called subscribe. In root urls.py I use include from subscribe's urls.py.

I put to INSTALLED_APPS subscribe and in subscribe's urls.py I use subscribe.views.<name> for call my views. When server run as python manage.py runserver locally all works fine. But when server run on nginx+uwsgi with virtualenv, I've got ImportError: No module named subscribe. When I changing subscribe to project.subscribe in INSTALLED_APPS and in subscribe's urls.py changing subscribe.views.<name> to project.subscribe.views.<name> all works fine.

uwsgi config:

[uwsgi] 
socket = 127.0.0.1:9003 
workers = 2 
master = true 
virtualenv = /home/user/python 
chdir = /home/user 
env = DJANGO_SETTINGS_MODULE=project.settings 
module = django.core.handlers.wsgi:WSGIHandler()
daemonize = /home/user/uwsgi.log

Why should I use absolute path import and how I can change it to relative back on nginx+uwsgi with virtualenv?

link|improve this question
add project to your python path either through the virtualenv startup script or otherwise – Timmy O'Mahony Nov 23 '11 at 12:06
my startup script already include it: sys.path.insert(0, '/home/user/project') – ZedXter Nov 23 '11 at 12:12
Django threats folders with init.py as packages and you set up /home/user/project as root directory at your wsgi script, so it should be working just as python manage.py runserver works. – Guilherme David da Costa Nov 23 '11 at 12:50
@GuilhermeDaviddaCosta yes, all directory project and all subdirectories have an init.py file, but if I change 'project.subscribe' to 'subscribe' in my installed apps, I get an import error. – ZedXter Nov 23 '11 at 13:26
Could you provide uwsgi configs? – Victor M Nov 25 '11 at 19:41
show 4 more comments
feedback

1 Answer

up vote 1 down vote accepted

Your uwsgi config should include pythonpath=/path/where/lives/settings.py/ directive, so python interpreter will know where to find your apps.

Find more information about uwsgi config options:

link|improve this answer
Thank you for your answer and very useful links! – ZedXter Dec 6 '11 at 10:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.