美文网首页
errors--mysql_config not found

errors--mysql_config not found

作者: fada492daf5b | 来源:发表于2018-01-19 07:39 被阅读0次

    1. 运行环境

    Debian9 + python3

    2. 安装mysqlclient

    pip3 install mysqlclient
    

    权限不足

    sudo pip3 install mysqlclient
    

    mysql_config not found,在stackoverfolw上找到一个解决方案

    sudo apt-get install libmysqlclient-dev
    

    没有找到libmysqlclient-dev,原因debian9上默认安装的是MariaDB

    sudo apt-get install libmariadbclient-dev
    

    SUCCESS

    相关文章

      网友评论

          本文标题:errors--mysql_config not found

          本文链接:https://www.haomeiwen.com/subject/ytanoxtx.html