Django 管理サイトにアクセスしようとすると、次のエラーが発生しました。
/admin/ での ImportError
django.views という名前のモジュールはありません
リクエスト メソッド: GET リクエスト URL:
http://127.0.0.1:8000/admin/
Django バージョン: 1.4.1 例外タイプ: ImportError 例外値:django.views という名前のモジュールはありません
例外の場所: import_module の /usr/local/lib/python2.7/dist-packages/django/utils/importlib.py、35 行目 Python 実行可能ファイル: /usr/bin/python Python バージョン: 2.7.3
ここに私の urls.py ファイルがあります:
from django.conf.urls import patterns, include, url
# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
url(r'^$', include('home.urls')),
# Uncomment the admin/doc line below to enable admin documentation:
# url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
url(r'^admin/', include(admin.site.urls)),
)
行にコメントするurl(r'^$', include('home.urls'))
と、管理サイトが再び機能します。
私の問題が何であるかわかりません。手伝って頂けますか?