尝试pip install mysql
时出现以下错误:
建立'_mysql'扩展名 创建build / temp.macosx-10.6-intel-2.7 / usr / bin / clang -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Qunused-arguments -Qunused-arguments -Dversion_info =(1,2,5,'final',1)-D__version __ = 1.2.5 -I / usr / local / Cellar / mysql / 8.0.12 / include / mysql -I / Library / Frameworks / Python.framework / Versions / 2.7 / include / python2.7 -c _mysql.c -o build / temp.macosx -10.6-intel-2.7 / _mysql.o _mysql.c:44:10:致命错误:找不到'my_config.h'文件 #include“ my_config.h” ^ ~~~~~~~~~~~~ 产生1个错误。 错误:命令'/ usr / bin / clang'失败,退出状态为1
有什么想法吗?
答案 0 :(得分:2)
您没有my_config文件。这是因为您尚未在计算机上安装mysql。尝试在安装mysql之后安装
答案 1 :(得分:0)
brew remove mysql
brew install mysql@5.7
brew link --force mysql@5.7
pip install mysql-python