Skip to content Skip to sidebar Skip to footer

Failed Building Wheel For Mysqlclient

I downloaded wheel to the most recent version But I'm not entirely sure how to make of this semi-cryptic error message Failed building wheel for mysql-python Command '/Users/u

Solution 1:

As for me, it is because my system lack of python3 developing lib. It warns that there is no "Python.h" while installing. The following command fix it for me.

yum install python34-devel -y

pip3 install mysqlclient

Solution 2:

The topic is quite old but for the people who might be suffered from having this problem,this can be your solution:

First of all,you must open the file where you use Python like 3.5,3.6,Anaconda etc. Then open cmd in that file and run the command below:

$ pip install mysqlclient==1.3.12

Post a Comment for "Failed Building Wheel For Mysqlclient"