Python 安装mysql库 新版本
时间: 2023-06-19 15:08:36 浏览: 108
python安装mysql-python简明笔记(ubuntu环境)
如果你使用的是 Python 3,可以使用以下命令安装最新版本的 mysql-connector-python 库:
```
pip3 install mysql-connector-python
```
如果你使用的是 Python 2,可以使用以下命令安装最新版本的 mysql-connector-python 库:
```
pip install mysql-connector-python
```
另外,如果你需要使用旧版本的 MySQLdb 库,可以使用以下命令安装:
```
pip install mysql-python
```
需要注意的是,mysql-python 已经不再维护,如果你使用的是 Python 3,可以使用 PyMySQL 库代替 mysql-python。
阅读全文