windows 에서 django 에서 mysqldb 연결 시 에러

Error loading MySQLdb module: No module named 'MySQLdb'

You can use mysqlclient instead of MySQLdb. MySqLdb is not compatible with Python 3.

pip install mysqlclient

1. 접속정보 설정

# settings.py

DATABASES = {
    'default':{
        'ENGINE': 'django.db.backends.mysql',
        'NAME': 'TABLE_NAME',
        'USER': 'USER',
        'PASSWORD': 'PASSOWRD',
        'HOST': 'HOST',
        'PORT': 'PORT'
    }
}

1.1. 출처

results matching ""

    No results matching ""