美文网首页
OSError: mysql_config not found

OSError: mysql_config not found

作者: 不能没有音乐 | 来源:发表于2021-04-19 17:24 被阅读0次

pip install mysqlclient时出错


image.png

未安装mysql-server和mysql-client

执行以下语句:

sudo apt-get install mysql-server mysql-client
sudo  apt-get install libmysqlclient-dev python3-dev

mac 需要安装brew
需要添加环境
/.zprofile或者/.bash_profile文件末尾追加下面代码:

export PATH=/opt/homebrew/bin:$PATH

安装

/bin/bash -c "$(curl -fsSL https://cdn.jsdelivr.net/gh/ineo6/homebrew-install/install.sh)"
brew install mysql-server mysql-client
brew install libmysqlclient-dev python3-dev

相关文章

网友评论

      本文标题:OSError: mysql_config not found

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