How to Solve Error: mysqlclient 1.4.0 or newer is required; you have 0.10.0

Solution: add the specified version to the __init__.py of the project file

import pymysql 

pymysql.version_info = (1, 4, 13, “final”, 0)

 #Specify the version pymysql.install_as_MySQLdb()

Read More:

Leave a Reply

Your email address will not be published. Required fields are marked *