Django中PostgreSQL数据库的使用

下载所需库

pip install psycopg2-binary

settings.py中的配置(本地)

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
        'NAME': '<数据库名称>',
        'USER': '<用户名>',
        'PASSWORD': '<密码>',
        'HOST': '',
        'PORT': '',
    }
}

 

posted @ 2020-03-05 09:07  柔南青空  阅读(919)  评论(0编辑  收藏  举报