django wsgi“没有模块命名模型”错误

时间:2013-05-16 16:58:48

标签: python django wsgi

我遇到django + wsgi这个问题,我无法理解为什么。当我访问运行apache2 + wsgi的本地网站时,出现此错误:

ImportError at /
No module named models

但是当我使用开发服务器运行时,一切正常:python manage.py runserver 0:8080

我的wsgi.py:

import os, sys

sys.path.append('/var/www/reader')
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "reader.settings")

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()

我的models.py

from django.db import models
from django.contrib.auth.models import User

class Feed(models.Model):
display_name = models.CharField(max_length=255)
link_feed = models.CharField(max_length=255)
user = models.ForeignKey(User)

我的views.py错误发生地点:

from django.shortcuts import render
from reader.models import Feed

def index(request):
feeds_list = Feed.objects.all()
context = {'feeds_list': feeds_list}
return render(request, 'home/index.html', context)

在我的设置中:

INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
# Uncomment the next line to enable the admin:
# 'django.contrib.admin',
# Uncomment the next line to enable admin documentation:
# 'django.contrib.admindocs',
'reader', <-- this is my app
)

我在Python 2.7.4和django 1.5.1下运行。

有人可以向我解释为什么请?

更新1:

jeremy@dev:/var/www/reader$ tree .
.
├── manage.py
└── reader
    ├── __init__.py
    ├── models.py
    ├── reader.settings
    ├── settings.py
    ├── static
    │   ├── images
    │   ├── scripts
    │   │   └── script.js
    │   └── styles
    │       └── style.css
    ├── templates
    │   ├── base.html
    │   ├── home
    │   │   └── index.html
    │   └── subscription
    │       └── add.html
    ├── urls.py
    ├── views.py
    └── wsgi.py

8 directories, 13 files

1 个答案:

答案 0 :(得分:0)

确保项目的应用阅读器中有__init__.py个文件

project/
-- reader/
---- __init__.py 
---- models.py
---- views.py

调试帮助

您是否安装了tree

如果不是brew install treeapt-get install tree(根据您的开发风格而改变)

运行

cd ~/path/to/djangoproject
tree .

然后将输出粘贴到顶部,这样我们就可以更好地了解最新情况。

francis at Kraken.local  ~/Sites/yaconiello/blog on francis*
$ tree .
.
├── __init__.py
├── __init__.pyc
├── admin
│   ├── __init__.py
│   ├── __init__.pyc
│   ├── article.py
│   ├── article.pyc
│   ├── category.py
│   └── category.pyc
├── feeds
│   ├── __init__.py
│   ├── category.py
│   └── latest.py
├── migrations
│   ├── 0001_initial.py
│   ├── 0001_initial.pyc
│   ├── 0002_auto__add_field_article_excerpt.py
│   ├── 0002_auto__add_field_article_excerpt.pyc
│   ├── __init__.py
│   └── __init__.pyc
├── models
│   ├── __init__.py
│   ├── __init__.pyc
│   ├── article.py
│   ├── article.pyc
│   ├── category.py
│   ├── category.pyc
│   ├── request.py
│   └── vote.py
├── signals.py
├── signals.pyc
├── templates
│   └── blog
│       ├── article
│       │   ├── category_archive.html
│       │   ├── date_archive.html
│       │   ├── index.html
│       │   └── single.html
│       ├── base.html
│       ├── emails
│       │   └── new_comment.html
│       ├── feeds
│       │   └── description.html
│       └── snippets
│           └── article_list.html
├── templatetags
│   ├── __init__.py
│   ├── __init__.pyc
│   ├── blogs.py
│   └── blogs.pyc
├── urls.py
├── urls.pyc
└── views
    ├── __init__.py
    ├── __init__.pyc
    ├── article.py
    └── article.pyc

12 directories, 45 files

更新

您的项目是读者。因此reader文件夹是项目级文件夹而不是应用级别。你真的不应该有项目级别的模型或视图。创建一个应用程序并将模型和视图移动到其中。见:https://stackoverflow.com/a/2610797/884453

另外b / c其reader/reader/models.py您可能在路径上有项目文件夹,因此reader.models不存在,但我打赌会reader.reader.models