PowerShell で実行するpython manage.py runserver
と、次のエラーが発生しました。
File "C:\Python27\lib\site-packages\django\utils\importlib.py", line
__import__(name)
IndentationError: unexpected indent
ただし、以前にそのファイルに触れたことはなく、そのファイルをメモ帳++で開くと、次のように表示されます。
if name.startswith('.'):
if not package:
raise TypeError("relative imports require the 'package' argument")
level = 0
for character in name:
if character != '.':
break
level += 1
name = _resolve_name(name[level:], package, level)
__import__(name) #LINE 35
return sys.modules[name]`
問題があると思われるものは何ですか?Python 2.7 と Django 1.4.2 を使用して Windows Vista x32 で作業しています。
の下のデータベース情報は次のsettings.py
とおりです。
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'demo', # Or path to database file if using sqlite3.
'USER': '****', # Not used with sqlite3.
'PASSWORD': '*****', # Not used with sqlite3.
'HOST': '127.0.0.1', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '3306', # Set to empty string for default. Not used with sqlite3.
}
}
'django.contrib.admin'
同じファイルのコメントも外しました。url(r'^admin/', include(admin.site.urls)),
「urls.py」のコメントを外して、管理者を有効にしました。そして、ここurls.py
に私が得たpython manage.py startproject
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('',
# Examples:
# url(r'^$', 'demo.views.home', name='home'),
# url(r'^demo/', include('demo.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)),
)