24

我按照 Heroku 支持中心上的 Django 入门指南进行操作,但是当我尝试在 Heroku 或工头上启动它时出现以下错误:

ImportError: No module named wsgi

这是我的过程文件:

web: gunicorn testproject.wsgi -b 0.0.0.0:$PORT

这是我的 django 项目设置文件:

from datetime import date, timedelta
import os
oneyr = date.today() + timedelta(days=365)
PROJECT_DIR = os.path.dirname(__file__)

DEBUG = os.environ.get('DEBUG')
TEMPLATE_DEBUG = DEBUG

ADMINS = (
    # ('Your Name', 'your_email@example.com'),
)

MANAGERS = ADMINS

TIME_ZONE = 'Europe/London'
LANGUAGE_CODE = 'en-gb'
USE_I18N = False
USE_L10N = True

MEDIA_ROOT = os.path.join(PROJECT_DIR, 'static/')
MEDIA_URL = '/static/'

STATICFILES_DIRS = (
    os.path.join(PROJECT_DIR, 'static/'),
)

STATICFILES_FINDERS = (
    'django.contrib.staticfiles.finders.FileSystemFinder',
    'django.contrib.staticfiles.finders.AppDirectoriesFinder',
)

TEMPLATE_LOADERS = (
    'django.template.loaders.filesystem.Loader',
    'django.template.loaders.app_directories.Loader',
)

MIDDLEWARE_CLASSES = (
    'django.middleware.common.CommonMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
)

ROOT_URLCONF = 'testproject.urls'

TEMPLATE_DIRS = (
    os.path.join(PROJECT_DIR, 'templates')
)

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'gunicorn',
    'storages',
)

STATICFILES_STORAGE = 'storages.backends.s3boto.S3BotoStorage'

有谁知道为什么这个应用程序无法启动?

4

6 回答 6

20

这是一个老问题,但我仍然在回应它,因为我最近遇到了这个确切的问题,而Intenex的回答虽然有帮助,但无法解决我的问题。

正如Intenex所指出的,您可能缺少该wsgi.py文件。这可能是因为您使用 Django 1.3 或以前的版本创建了项目。使用 Django 1.4 创建项目会自动创建wsgi.py类似manage.py, settings.py.

Intenex指出的不同,这是您应该做的。假设您使用的是 Django 1.3 或更早版本,wsgi.py请在项目目录(与manage.pyetc. 相同的目录)中创建文件并将以下内容添加到您的wsgi.py文件中:

import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "mysite.settings")

# This application object is used by the development server
# as well as any WSGI server configured to use this file.
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()

请注意最后两条语句与 Intenex 的答案的区别。

有了这个,你应该能够foreman start在你的 Procfile 中运行以下内容:

web: gunicorn mysite.wsgi

于 2012-12-25T08:47:55.637 回答
5

看起来您的项目目录中没有 wsgi.py 模块文件。如果您使用 Django 1.3 或更早版本启动项目(使用 django-admin.py startproject 项目),则不会自动创建 wsgi 文件。您需要按照本指南自己创建它:

https://docs.djangoproject.com/en/dev/howto/deployment/wsgi/

根据指南,将其放入文件中,确保将“mysite”更改为您的项目名称:

import os

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "mysite.settings")

# This application object is used by the development server
# as well as any WSGI server configured to use this file.
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()

此外,由于我没有在您的设置中看到这一点,您需要确保您的项目目录包含在您的 Python 路径中,按照此处的最后一句:https ://docs.djangoproject.com/en/dev/如何/部署/wsgi/gunicorn/#running-django-in-gunicorn-as-a-generic-wsgi-application

否则你会遇到和我一样的问题: Python app import error in Django with WSGI gunicorn

在那之后,一切都应该顺利进行。干杯!

旁注:您可能已经能够通过将 Procfile 更改为:

web: python manage.py run_gunicorn

根据https://docs.djangoproject.com/en/dev/howto/deployment/wsgi/gunicorn/#using-gunicorn-s-django-integration,但我自己没有测试过,所以不确定。可能仍然需要 wsgi.py 模块。

于 2012-07-26T05:16:38.453 回答
1

刚遇到这个问题;我突然想到我的 Procfile 有 Windows 格式 EOL 编码;切换到 UNIX EOL - 瞧,工作了。

于 2013-12-09T01:56:43.843 回答
1

刚刚遇到这个错误和上面的问题。

发现设置文件在ALLOWED_HOSTS. 上面的描述帮助我指出了那个方向(至少看看设置)。

认为它可能会帮助其他人...

于 2015-08-10T18:23:25.123 回答
1

我也有这个错误,其他解决方案没有解决它。我的问题的根源是我通过 apt-get 安装了 gunicorn。为了解决,我通过 apt 删除 gunicorn 并运行pip install gunicorn

于 2020-01-01T00:33:56.497 回答
0

我遇到了这个错误,因为我手动将我的项目文件夹从myprojectto重命名myproject_django,但我没有修复设置文件中的所有引用。尤其是,

WSGI_APPLICATION = 'myproject.wsgi.application'

需要改为

WSGI_APPLICATION = 'myproject_django.wsgi.application'

同样,该文件中有一些引用需要更改。只需进行搜索并仔细地逐一替换即可。

于 2015-11-20T22:10:06.127 回答