ERROR: No matching distribution found for mysqlclient

Django python issue.
While installing mysqlclient in python environment get error.
ERROR:
no matching distribution found for mysqlclient.


ERROR: Could not find a version that satisfies the requirement mysqlclient==1.3.12

Solution:


Install base packages:
yum install python3-devel mysql-devel

Now try to install mysqlclient in python environment.

(env) [root@linuxsysad myproject]# pip install mysqlclient==1.3.12


Leave a comment