ubuntu18 安装mysqlclient报错Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-8139q6vm/mysqlclient/

After Django2.2, pymysql not be used, you need to install mysqlclient

ubuntu18 mysqlclient given installation OSError: mysql_config not found, resulting in lack of reliance

sudo apt-get install libmysqlclient-dev
sudo apt install libssl-dev 
sudo apt install libcrypto++-dev
pip3 install mysqlclient

Guess you like

Origin www.cnblogs.com/iread9527/p/12649968.html