# 安装 Python MySQLdb
> 原文: [https://thepythonguru.com/installing-mysqldb/](https://thepythonguru.com/installing-mysqldb/)
* * *
于 2020 年 1 月 7 日更新
* * *
MySQLdb 是用于使用 python 访问 MySQL 数据库的 api。 它建立在 MySQL C API 之上。
MySQLdb 尚不支持 python 3,它仅支持 python 2.4-2.7。 因此,您需要在本教程中使用 python 2。 我们将使用 python 2.7.9,您可以从此处下载。
## 安装 MySQLdb
* * *
在安装之前,必须首先检查系统上是否已经安装了 MySQLdb。 要测试打开命令提示符或终端,然后启动 python shell 并键入以下代码
```py
import MySQLdb
```
如果它像这样抛出`ImportError`:
![check-mysqldb-installation.png](https://img.kancloud.cn/2c/b4/2cb43c1838666d19febab390d3c65e7f_768x203.png)
那么您需要安装 MySQLdb。 否则,您已经安装了 MySQLdb。
如果您在 Windows 上,请[下载 MySQLdb 并安装它](http://sourceforge.net/projects/mysql-python/)。
在下一篇文章中,我们将讨论[如何连接到访问数据库](/connecting-to-the-database/)。
* * *
* * *
- 初级 Python
- python 入门
- 安装 Python3
- 运行 python 程序
- 数据类型和变量
- Python 数字
- Python 字符串
- Python 列表
- Python 字典
- Python 元组
- 数据类型转换
- Python 控制语句
- Python 函数
- Python 循环
- Python 数学函数
- Python 生成随机数
- Python 文件处理
- Python 对象和类
- Python 运算符重载
- Python 继承与多态
- Python 异常处理
- Python 模块
- 高级 Python
- Python *args和**kwargs
- Python 生成器
- Python 正则表达式
- 使用 PIP 在 python 中安装包
- Python virtualenv指南
- Python 递归函数
- __name__ == "__main__"是什么?
- Python Lambda 函数
- Python 字符串格式化
- Python 内置函数和方法
- Python abs()函数
- Python bin()函数
- Python id()函数
- Python map()函数
- Python zip()函数
- Python filter()函数
- Python reduce()函数
- Python sorted()函数
- Python enumerate()函数
- Python reversed()函数
- Python range()函数
- Python sum()函数
- Python max()函数
- Python min()函数
- Python eval()函数
- Python len()函数
- Python ord()函数
- Python chr()函数
- Python any()函数
- Python all()函数
- Python globals()函数
- Python locals()函数
- 数据库访问
- 安装 Python MySQLdb
- 连接到数据库
- MySQLdb 获取结果
- 插入行
- 处理错误
- 使用fetchone()和fetchmany()获取记录
- 常见做法
- Python:如何读取和写入文件
- Python:如何读取和写入 CSV 文件
- 用 Python 读写 JSON
- 用 Python 转储对象