ERROR: Could not build wheels for mysqlclient, which is required to install pyproject.toml-based projects pip3 install 时报错,怎么解决
时间: 2023-07-06 17:40:32 浏览: 72
Python使用pip安装报错:is not a supported wheel on this platform的解决方法
5星 · 资源好评率100%
这个错误通常是由于缺少mysqlclient的依赖库引起的。你可以尝试安装以下几个软件包,然后再次尝试安装mysqlclient:
Ubuntu/Debian:
```
sudo apt-get install python3-dev default-libmysqlclient-dev build-essential
```
CentOS/RHEL:
```
sudo yum install python3-devel mysql-devel
```
如果你仍然遇到问题,可以尝试使用conda环境或使用pip安装mysqlclient二进制文件。
阅读全文