导入错误:Django

时间:2015-07-13 11:06:46

标签: django geodjango

我将继续http://kw20kb.wikidot.com/geodjango。我在项目文件夹中创建了一个urls.py,并在其中添加了以下行。

from django.conf.urls import patterns, include, url
from django.contrib import admin
import settings

# Uncomment the next two lines to enable the admin:
# from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
    # Uncomment the next line to enable the admin:
    url(r'^admin/', include(admin.site.urls)),
    url(r'', include('waypoints.urls')),
)

当我运行我的开发服务器时,我收到错误

Import Error: No module named settings

导致此错误的原因是什么?

1 个答案:

答案 0 :(得分:3)

改为使用:

from django.conf import settings

有关使用django settings的更多信息,请参阅文档。