Installing MySQL-python

前端 未结 8 662
夕颜
夕颜 2020-11-28 19:58

I got the below failure while trying to get MySQL-python installed on my Ubuntu/Linux Box.From the below it seem like the issue is sh: mysql_config: not found C

8条回答
  •  -上瘾入骨i
    2020-11-28 20:36

    In python3 with virtualenv on a Ubuntu Bionic machine the following commands worked for me:

    sudo apt install build-essential python-dev libmysqlclient-dev
    sudo apt-get install libssl-dev
    pip install mysqlclient
    

提交回复
热议问题