Client Does Not Support Authentication Protocol Requested By Server Consider Upgrading Mysql Client
I want to run python manage.py syncdb to build a database with Django. However, I get the following error: client does not support authentication protocol requested by server cons
Solution 1:
Django doesn't automatically generate your database. You must create it first before syncing or migrating. Also, you need to install MySQLDB
package on your python package list. But if you're using Python3 then I suggest you use PyMySQL then add these on your settings.py
import pymysql
pymysql.install_as_MySQLdb()
Post a Comment for "Client Does Not Support Authentication Protocol Requested By Server Consider Upgrading Mysql Client"