如何停止获取 ImportError:将 django 与 wsgi 一起使用时无法导入设置“mofin.settings”?
Posted
技术标签:
【中文标题】如何停止获取 ImportError:将 django 与 wsgi 一起使用时无法导入设置“mofin.settings”?【英文标题】:How do I stop getting ImportError: Could not import settings 'mofin.settings' when using django with wsgi? 【发布时间】:2010-11-27 12:57:15 【问题描述】:我无法让 wsgi 导入我的项目“mofin”的设置文件。
apache错误日志中的错误列表如下
mod_wsgi (pid=4001): Exception occurred within WSGI script '/var/www/wsgi-scripts/django.wsgi'.
Traceback (most recent call last):
File "/usr/lib/python2.5/site-packages/django/core/handlers/wsgi.py", line 228, in __call__
self.load_middleware()
File "/usr/lib/python2.5/site-packages/django/core/handlers/base.py", line 31, in load_middleware
for middleware_path in settings.MIDDLEWARE_CLASSES:
File "/usr/lib/python2.5/site-packages/django/conf/__init__.py", line 28, in __getattr__
self._import_settings()
File "/usr/lib/python2.5/site-packages/django/conf/__init__.py", line 59, in _import_settings
self._target = Settings(settings_module)
File "/usr/lib/python2.5/site-packages/django/conf/__init__.py", line 94, in __init__
raise ImportError, "Could not import settings '%s' (Is it on sys.path? Does it have syntax errors?): %s" % (self.SETTINGS_MODULE, e)
ImportError: Could not import settings 'mofin.settings' (Is it on sys.path? Does it have syntax errors?): No module named mofin.settings
我得到了“你好世界!”此处列出的 wsgi 应用程序(http://code.google.com/p/modwsgi/wiki/QuickConfigurationGuide)可以正常工作。
使用 python manage.py (runserver|shell|syncdb|test store) 可以很好地加载 settings.py 文件 应用程序也是如此。
这是我的 wsgi 文件:
import os
import sys
sys.path.append('/home/django/mofin/trunk')
sys.path.append('/home/django/mofin/trunk/mofin')
print >> sys.stderr, sys.path
os.environ['DJANGO_SETTINGS_MODULE'] = 'mofin.settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()
错误日志中打印的 sys.path 是
['/usr/lib/python25.zip', '/usr/lib/python2.5', '/usr/lib/python2.5/plat-linux2', '/usr/lib/python2.5 /lib-tk'、'/usr/lib/python2.5/lib-dynload'、'/usr/lib/python2.5/site-packages'、'/usr/lib/python2.5/site-packages/ gtk-2.0', '/home/django/mofin/trunk', '/home/django/mofin/trunk/mofin']
如果我用 manage.py 打开一个交互式 shell,sys.path 是
['/home/django/mofin/trunk/mofin', '/usr/lib/python25.zip', '/usr/lib/python2.5', '/usr/lib/python2.5/plat -linux2'、'/usr/lib/python2.5/lib-tk'、'/usr/lib/python2.5/lib-dynload'、'/usr/lib/python2.5/site-packages'、' /usr/lib/python2.5/site-packages/gtk-2.0']
我的 django 设置文件如下所示: # mofin 项目的 Django 设置。
DEBUG = True
TEMPLATE_DEBUG = DEBUG
ADMINS = (
# ('Dan xxxx', 'xxxx@yyyyyyyyyy.com'),
)
MANAGERS = ADMINS
DATABASE_ENGINE = 'mysql' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
DATABASE_NAME = 'mofin' # Or path to database file if using sqlite3.
DATABASE_USER = 'aaaaaa' # Not used with sqlite3.
DATABASE_PASSWORD = 'bbbbbb' # Not used with sqlite3.
DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3.
DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3.
# Local time zone for this installation. Choices can be found here:
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
# although not all choices may be available on all operating systems.
# If running in a Windows environment this must be set to the same as your
# system time zone.
TIME_ZONE = 'Europe/London'
# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
LANGUAGE_CODE = 'en-GB'
SITE_ID = 1
# If you set this to False, Django will make some optimizations so as not
# to load the internationalization machinery.
USE_I18N = True
# Absolute path to the directory that holds media.
# Example: "/home/media/media.lawrence.com/"
MEDIA_ROOT = '/home/django/media/'
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
# trailing slash if there is a path component (optional in other cases).
# Examples: "http://media.lawrence.com", "http://example.com/media/"
MEDIA_URL = 'http://mofin.mywebsite.co.uk/media/'
# URL prefix for admin media -- CSS, javascript and images. Make sure to use a
# trailing slash.
# Examples: "http://foo.com/media/", "/media/".
ADMIN_MEDIA_PREFIX = '/admin_media/'
# Make this unique, and don't share it with anybody.
SECRET_KEY = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
# List of callables that know how to import templates from various sources.
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.load_template_source',
'django.template.loaders.app_directories.load_template_source',
# 'django.template.loaders.eggs.load_template_source',
)
MIDDLEWARE_CLASSES = (
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
)
ROOT_URLCONF = 'mofin.urls'
TEMPLATE_DIRS = (
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
)
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin',
'mofin.store'
)
【问题讨论】:
查看这个问题的答案:***.com/questions/4194243/django-wgsi-paths 【参考方案1】:如果您有一个与项目名称相同的应用程序(项目的子目录,其中包含一个 init 文件),也会发生这种情况。您的 settings.py 文件可能在您的项目文件夹中,但似乎 django 系统的一部分首先在项目中查找与项目同名的模块,并且在那里找不到 settings.py ,它会失败并显示误导性消息。
-uniquename1
---settings.py
---manage.py
---application1
-----file.py
-----file2.py
---uniquename1 (problem, rename this to some other unique name)
-----file.py
-----file2.py
只是检查其他有此问题的人。适用于 Django 1.3 和可能的其他版本。
【讨论】:
除了重命名目录还有其他解决方案吗? 当时我没有寻找解决方案,但如果这种情况仍然发生,我猜这不是开发人员优先考虑的问题。挖掘原因超出了我的技能。我相信必须在核心系统中进行更改。 我不认为你是对的 Shaneveeg。就我而言,“settings.py”位于项目文件夹的“第二级”中,如此处所示,在执行“django-admin.py startproject mysite”时:docs.djangoproject.com/en/1.6/intro/tutorial01【参考方案2】:我有类似的权限问题,虽然我的 settings.py 有正确的权限,但 .pyc 没有!!!所以请注意这一点。
【讨论】:
+1 刚刚遇到与 OP 类似的问题,删除 *.pyc 解决了它,非常感谢。这似乎很好地工作alias rmpyc="find . -name "*.pyc" -exec rm -rf \;"
来“清理”一个项目【参考方案3】:
嘿,只是为这个问题添加一个额外的答案。我有完全相同的问题,但不是文件权限。我在附加“path/to/project”,但没有附加“path/to”。链接是 mod_wsgi 的 Django integration explanation,它向我展示了答案。
【讨论】:
import os, sys base = os.path.dirname(os.path.dirname(__file__)) base_parent = os.path.dirname(base) sys.path.append(base) sys.path.append(base_parent)
在任何其他 py 语句之前。解决了这个问题。感谢您的提示:-)【参考方案4】:
我找到了答案……文件权限。 /home/django 设置为 700。即只有 django 可以查看内容。 apache 作为 Apache 运行,因此无法通过 /home/django。
【讨论】:
授予 Apache 读取该目录的最安全权限是什么?【参考方案5】:我认为在加载 django 之前,您需要在 apache 的 wsgi 脚本中添加一个斜杠。
import os
import sys
sys.path.append('/home/django/mofin/trunk/')
sys.path.append('/home/django/mofin/trunk/mofin/')
print >> sys.stderr, sys.path
os.environ['DJANGO_SETTINGS_MODULE'] = 'mofin.settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()
就我而言
import os
import sys
if os.uname()[1] == 'vivien':
sys.path.append('/home/www/sitebuilder.blacknight.ie/web/')
os.environ['DJANGO_SETTINGS_MODULE'] = 'gibo.dev_settings'
elif os.uname()[1] == 'thingy':
sys.path.append('/home/www/sitebuilder.blacknight.ie/web/')
os.environ['DJANGO_SETTINGS_MODULE'] = 'gibo.dev_settings'
else:
sys.path.append('/home/www/sitebuilder.blacknight.ie/web/')
os.environ['DJANGO_SETTINGS_MODULE'] = 'gibo.settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()
【讨论】:
这是我的问题。添加第二个附加语句修复它!感谢您的帮助! 有人应该支持这个答案!添加到 PYTHONPATH 时需要尾部斜杠。荒谬的!它占用了我一个小时的时间。【参考方案6】:此问题的另一个原因是您无法将应用程序命名为与另一个 python 模块相同的名称。例如我调用了我的site
,几乎没有意识到site
已经是一个python 模块。
您可以通过启动 python 并运行 import site
、help(site)
来检查这一点,它会告诉您它没有使用您的模块。当 django 尝试导入不存在的 site.settings
时,这当然会给您错误。
【讨论】:
【参考方案7】:可能的问题:
您忘记了 __init__.py 文件,该文件必须在您的项目中以及您认为要导入 python 模块的所有目录中。
您可以尝试的其他方法是将路径直接添加到 manage.py 文件中,例如:
import sys
...
...
sys.path.insert(0, '/home/django/mofin/trunk')
希望对你有帮助
【讨论】:
感谢 Xidobix,我确实找到了另一个没有 init.py 文件的模块,修复了在 runserver 上修复了管理站点的问题,但这仍然无法正常工作。直接添加路径也没有解决它。我想我会创建一个非常简单的项目,然后尝试让它工作并从那里继续前进。 我进一步简化了它,用“django-admin.py startproject 花生”创建了一个新项目,修改了 wsgi 文件以指向“peanut.settings”,而不是花生在 runserver 上工作正常,但相同wsgi 错误。可能与文件权限、文件所有权或其他一些在 runserver 和 wsgi 之间不同的环境变量有关吗? Dan,我真诚地从未使用过 wsgi,我使用 mod_python。但是在您正在阅读的指南的末尾,有一个指向code.google.com/p/modwsgi/wiki/IntegrationWithDjango 的链接。一定有你要找的答案。祝你好运!【参考方案8】:我遇到了同样的问题,但有另一种解决方案:
我的项目文件夹被命名为我的应用程序之一。
我有:
/home/myApp /home/myApp/settings.py /home/myApp/manage.py /home/myApp/rights.py /home/myApp/static/ /home/myApp/static/ /home/myApp/myApp/model.py /home/myApp/myApp/admin.py /home/myApp/myApp/views.py
这种树似乎并不容易。 我把我的项目根文件夹的名字改了,问题就解决了!
【讨论】:
我相信这现在是可能的(1.4),因为我没有看到这个问题。 code.djangoproject.com/ticket/1908 只有在项目根文件夹中有 init.py 文件时才会出现此问题,因为它会错误地让导入器认为这是一个可以导入的模块(而不是查看内部具有相同名称的模块)【参考方案9】:(我为Django deployment problem in Apache/mod_wsgi. ImportError: Could not import settings 'site.settings' 写了同样的答案,以防有人只发现这个问题。)
在您的情况下这似乎不是问题,但是当我使用 WSGIPythonPath 指令(而不是 .wsgi 文件)设置 sys.path
时,我遇到了相同的 ImportError。在我切换到在守护进程模式下运行 WSGI 之前,它运行良好。一旦你这样做了,你必须使用 WSGIDaemonProcess 指令的 python-path
参数。
【讨论】:
【参考方案10】:就我而言,我有一个导致此错误的循环导入。从settings.py
我在另一个模块中导入了一个函数,并且从那个模块中我导入了一个设置变量。为了解决这个问题,我没有直接从设置中导入,而是这样做了:
from django.conf import settings
【讨论】:
【参考方案11】:让我补充一下我对这个问题的经验。在敲打了几个小时并尝试了上述所有答案后,我发现 settings.py 文件中的几行导致了问题:
from south.modelsinspector import add_introspection_rules
add_introspection_rules([], ["^dynamicsites.fields.FolderNameField"])
add_introspection_rules([], ["^dynamicsites.fields.SubdomainListField"])
之后,我复制了 settings.py,命名为 scripts_settings.py,但没有那几行,并使用了该文件,现在一切正常。
【讨论】:
【参考方案12】:乍一看,我会说 python 路径是错误的,但与交互式 shell 相比,它看起来还不错。 所以不妨试试这个:
from django.core.management import setup_environ
from mofin import settings
setup_environ(settings)
【讨论】:
【参考方案13】:我要说的是,您可以将项目目录插入/追加到 wsgi 文件中的 sys.path 中,但如果您的设置文件位于
/home/django/mofin/trunk/mofin/settings.py
那你应该很好。
Is it on sys.path? Does it have syntax errors?
这几乎概括了您正在寻找的内容。
有趣的是错误会传播:
for middleware_path in settings.MIDDLEWARE_CLASSES:
但您似乎拥有exact default。
您可能想检查 wsgi 指向哪个 python 解释器。您是否打算使用 virtualenv 但 wsgi 正在查看您的系统安装?
您还可以设置运行 wsgi 的用户和组。我使用类似的东西:
WSGIDaemonProcess mysite.com user=skyl group=skyl processes=n threads=N python-path=/home/skyl/pinax/pinax-env2/lib/python2.6/site-packages
【讨论】:
【参考方案14】:我遇到了类似的问题,在我的 python 中使用以下 sn-p 解决了它:
ALLDIRS = ['/var/www/MarkerDB/']
import sys
import site
# Remember original sys.path.
prev_sys_path = list(sys.path)
# Add each new site-packages directory.
for directory in ALLDIRS:
site.addsitedir(directory)
# Reorder sys.path so new directories at the front.
new_sys_path = []
for item in list(sys.path):
if item not in prev_sys_path:
new_sys_path.append(item)
sys.path.remove(item)
sys.path[:0] = new_sys_pat
来源:http://code.google.com/p/modwsgi/wiki/VirtualEnvironments#Application_Environments
【讨论】:
【参考方案15】:我刚刚遇到这个错误,解决方案是通过 myvenv/source/activate 启用我的虚拟环境。
【讨论】:
以上是关于如何停止获取 ImportError:将 django 与 wsgi 一起使用时无法导入设置“mofin.settings”?的主要内容,如果未能解决你的问题,请参考以下文章
如何将单引号 (') 捕获到 JSON.parse 的字符串中?
您将如何安装 python 模块/包,以便我的脚本可以使用 pypy3 而不是 Python3 运行? ImportError:没有命名的模块
ImportError:LinuxMint17.3 中的“没有名为 plotly.plotly 的模块”
OS X 上的 Matplotlib 问题(“ImportError: cannot import name _thread”)