Skip to main content

Posts

Showing posts from January, 2019

Fix Error: mysqlclient installation problem with Python

This problem usually happens when you try to install mysqlclient using Python 3.7 If you're using python 3.7, there is no way for fixing it. The only way to fix it is to downgrade your python version. Python 3.6 or lower. After re-configuring your python version, run this two commands: $ pip install wheel $ pip install --only-binary :all: mysqlclient