Downloading mysql_connector_python-8.0.23-py2.py3-none-any.whl (379 kB) ---------------------------------------- 379.9/379.9 kB 43.4 kB/s eta 0:00:00 ERROR: Could not find a version that satisfies the requirement protobuf>=3.0.0 (from mysql-connector-python) (from versions: none) ERROR: No matching distribution found for protobuf>=3.0.0
时间: 2023-06-19 12:08:25 浏览: 228
tqdm-4.66.0-py3-none-any.whl
这个错误提示是因为缺少 protobuf 库的版本问题,你可以尝试先安装 protobuf 库,然后再安装 mysql-connector-python 库。你可以使用以下命令安装 protobuf 库:
```
pip install protobuf
```
安装完成后再尝试安装 mysql-connector-python 库。如果还有其他问题,请告诉我。
阅读全文