windows에서 django mysqldb 연결 시 에러
1 | Error loading MySQLdb module: No module named 'MySQLdb' |
You can use mysqlclient instead of MySQLdb. MySqLdb is not compatible with Python 3.
1 | pip install mysqlclient |
접속정보 설정
1 | # settings.py |
1 | Error loading MySQLdb module: No module named 'MySQLdb' |
You can use mysqlclient instead of MySQLdb. MySqLdb is not compatible with Python 3.
1 | pip install mysqlclient |
1 | # settings.py |