您的位置:首页 > 编程语言 > Python开发

Windows+Python2.7下安装MySQLdb驱动

2014-06-18 09:55 204 查看
下载与安装

Python中使用MySQL需要安装MySQLdb驱动,可以从CSDN下载内下,

MySQL-python-1.2.4.win32-py2.7.exe

目前支持最高Python版本号2.7:


Windows下可以安装二进制版本的MySQLdb。

目前版本: MySQL-python-1.2.4.win32-py2.7.exe
下载地址:http://download.csdn.net/detail/jindou910101/6240599

保证好用。

 

常见问题:
1.ImportError: DLL load failed: 找不到指定的模块。

C:\Python26>python

Python 2.6 (r26:66721, Oct  2 2008, 11:35:03) [MSC v.1500 32 bit (Intel)] on win32

Type “help”, “copyright”, “credits” or “license” for more information.
>>> import MySQLdb

Traceback (most recent call last):

File “<stdin>”, line 1, in <module>

File “C:\Python26\Lib\site-packages\MySQLdb\__init__.py”, line 19, in <module>
import _mysql

ImportError: DLL load failed: 找不到指定的模块。

 

解决办法:我参考了 http://sourceforge.net/projects/mysql-python/forums/forum/70460/topic/2316047
 

需要下载libmmd.dll和libguide40.dll两个dll文件并复制到Python安装目录的Lib\site-packages下,链接在下面,你也可以谷歌一下:

libguide40.dll.zip

libmmd.dll.zip 

 2.被弃用的set模块,这个只是个警告,也可以不改

C:\Python26>python

Python 2.6 (r26:66721, Oct  2 2008, 11:35:03) [MSC v.1500 32 bit (Intel)] on win32

Type “help”, “copyright”, “credits” or “license” for more information.
>>> import MySQLdb

C:\Python26\lib\site-packages\MySQLdb\__init__.py:34: DeprecationWarning: the sets module is deprecated
from sets import ImmutableSet

 解决办法:要是每回都跳出来,那多不爽啊,set模块现在已经是内建的数据类型了,ImmutableSet现在成了frozenset。因此需要改成:

1) file “__init__”:
from sets import ImmutableSet
class DBAPISet(ImmutableSet):

改为
class DBAPISet(frozenset) :

2) file “converters.py”, 删除:
from sets import BaseSet, Set

3) file “converters.py”, 将 “Set”改为“set” (IMPORTANT: 共有两处):

line 45: return set([ i for i in s.split(',') if i ])

line 129: set: Set2Str,

 

最新消息,你可以去这里下载没有任何问题的MySQLdb,国外的大牛所作:


MySQL-python
Windows 64bit and 32bit distributions

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  python mysql