我在Django项目中创建了PostgreSQL。当我为数据库迁移时,将返回此异常。
django.core.exceptions.ImproperlyConfigured: 'django.db.backends.postgresql'
isn't an available database backend.
Try using 'django.db.backends.XXX', where XXX is one of:
'mysql', 'oracle', 'sqlite3'
我尝试了postgresql_psycopg2
和pip install psycopg2-binary
,但没有用。
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'eatadil',
'USER': 'postgre',
'PASSWORD': 'realpassword',
'HOST': 'localhost',
'PORT': '5432',
}
}
如何解决此问题?
答案 0 :(得分:0)
此问题已解决。
您只能更新Django的最新版本。