存在 python2.7 版本的 MySQL-python 的镜像源
时间: 2024-06-09 12:08:12 浏览: 171
MySQL-python 是一个 MySQL 数据库的 Python 接口,但是它不支持 Python 3.x 版本。如果你需要在 Python 2.7 中使用 MySQL-python,你可以使用以下镜像源:
1. 清华大学开源软件镜像站:https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/mysql-python/
2. 阿里云 PyPI 镜像:https://mirrors.aliyun.com/pypi/simple/mysql-python/
3. 豆瓣 PyPI 镜像:https://pypi.doubanio.com/simple/mysql-python/
你可以使用以下命令来安装 MySQL-python:
```
pip install -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/mysql-python/ mysql-python
```
或者:
```
pip install -i https://mirrors.aliyun.com/pypi/simple/mysql-python/ mysql-python
```
或者:
```
pip install -i https://pypi.doubanio.com/simple/mysql-python/ mysql-python
```
注意:如果你在使用 macOS 系统,请先安装 mysql-connector-c 库,再安装 MySQL-python。在 Ubuntu/Debian 系统中,你可以使用以下命令安装:
```
sudo apt-get install libmysqlclient-dev
```
阅读全文