Mac pip install mysql-python unsuccessful

后端 未结 6 1071
一个人的身影
一个人的身影 2020-12-08 23:21

I installed MySQL and Workbench from website. I have a django project whose requirements.txt:

Django==1.11.12
djangorestframework==3.8.2
django-cors-headers=         


        
6条回答
  •  星月不相逢
    2020-12-08 23:38

    Installing of an older version of the MySQL worked for me:

    brew remove mysql
    brew install mysql@5.7
    brew link --force mysql@5.7
    pip install mysql-python
    

    See:

    • issue on the MySQLdb1 Github
    • and this sof answer

提交回复
热议问题