我正在使用django tutorial来学习如何使用Django。
我无法解决此错误
ImproperlyConfigured: settings.DATABASES is improperly configured. Please supply the ENGINE value. Check settings documentation for more details.
输入
后出现此错误python manage.py syncdb
在CentOS上使用的django版本为1.5
答案 0 :(得分:0)
如果使用postgresql或sqlite或mysql后端,也许您忘记指定引擎名称。
it's up to what kind of database you are using.
for example for postgresql:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
# Add 'postgresql_psycopg2',
}
答案 1 :(得分:0)