【发布时间】:2014-09-05 09:31:29
【问题描述】:
我正在尝试从 Django 1.6 升级到 1.7。
在运行 python manage.py runserver 时,出现以下错误:
django.core.exceptions.ImproperlyConfigured: WSGI application 'myapp.wsgi.application' could not be loaded; Error importing module: 'cannot import name get_path_info'
这是我的 settings.py 中的相应行:
WSGI_APPLICATION = 'myapp.wsgi.application'
这是我的 wsgi.py 文件:
import os
# We defer to a DJANGO_SETTINGS_MODULE already in the environment. This breaks
# if running multiple sites in the same mod_wsgi process. To fix this, use
# mod_wsgi daemon mode with each site in its own daemon process, or use
# os.environ["DJANGO_SETTINGS_MODULE"] = "myapp.settings"
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "myapp.settings")
# This application object is used by any WSGI server configured to use this
# file. This includes Django's development server, if the WSGI_APPLICATION
# setting points here.
from django.core.wsgi import get_wsgi_application
# Apply WSGI middleware here.
# from helloworld.wsgi import HelloWorldApplication
# application = HelloWorldApplication(application)
from dj_static import Cling
application = Cling(get_wsgi_application())
有解决办法吗?
【问题讨论】:
-
看起来
Cling导致错误。您可以删除Cling并重试吗? -
@ChillarAnand 如果我这样做,服务器会启动,但不再提供静态文件