だから私はプログラマーブック.comのチュートリアルに従っており、ここにある7番目のビデオを完成させたところですhttp://www.youtube.com/watch?v=hTq98PGOqMA&feature=share&list=PL385A53B00B8B158E
コマンドを ./manage.py runserver に渡した後、次のエラーが発生します。
ImportError at /admin/
No module named apps.homepage
以下は、必要に応じてファイルの内容とディレクトリ構造です。
ブログ/ブログ/urls.py
from django.conf.urls import patterns, include, url
from blog.apps.homepage import *
# Uncomment the next two lines to enable the admin:
# from django.contrib import admin
# admin.autodiscover()
urlpatterns = patterns('',
(r'^', include('blog.apps.homepage.urls')),
# Examples:
# url(r'^$', 'blog.views.home', name='home'),
# url(r'^blog/', include('blog.foo.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)),
)
ブログ/アプリ/ホームページ/urls.py
from django.conf.urls.defaults import *
urlpatterns = patterns('',
(r'^$', 'blog.apps.homepage.views.index'),
)
ブログ/アプリ/ホームページ/views.py
from django.http import HttpResponse
def index(request):
return HttpResponse('Index Page')
必要な場合に備えて、ここに私のファイルとディレクトリ構造があります
blog
├── apps
│ ├── homepage
│ │ ├── __init__.py
│ │ ├── models.py
│ │ ├── tests.py
│ │ ├── urls.py
│ │ └── views.py
│ └── __init__.py
├── blog
│ ├── __init__.py
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
├── custom
│ └── __init__.py
├── data.db
├── manage.py
├── static
│ ├── css
│ ├── img
│ ├── js
│ ├── restricted
│ └── upload
└── templates
このエラーを修正するために何ができるかを誰かが理解するのを手伝ってくれますか?