pip install mysql-python fails with EnvironmentError: mysql_config not found

后端 未结 21 2357
广开言路
广开言路 2020-11-22 15:58

This is the error I get

(mysite)zjm1126@zjm1126-G41MT-S2:~/zjm_test/mysite$ pip install mysql-python
Downloading/unpacking mysql-python
  Do         


        
21条回答
  •  失恋的感觉
    2020-11-22 16:21

    There maybe various answers for the above issue, below is a aggregated solution.

    For Ubuntu:

    $ sudo apt update
    $ sudo apt install python-dev
    $ sudo apt install python-MySQLdb
    

    For CentOS:

    $ yum install python-devel mysql-devel
    

提交回复
热议问题