美文网首页
Django 中安装 MySQL-python

Django 中安装 MySQL-python

作者: 不知名bzm | 来源:发表于2019-08-01 09:34 被阅读0次

    遇到了各种各样的报错:
    比如这样的:```
    _mysql.c:44:10: fatal error: 'my_config.h' file not found
    #include "my_config.h"

    比如这样的:
    

    error: command 'cc' failed with exit status 1

    
    实际解决:
    

    brew install mysql-connector-c
    brew install mysql
    brew link --overwrite mysql
    pip install MySQL-python

    
    注意:如果 3 个 brew 都执行成功,但是 pip 仍旧报错,可以试下重新打开终端执行 pip。

    相关文章

      网友评论

          本文标题:Django 中安装 MySQL-python

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