`
xiaolin0199
  • 浏览: 573244 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

在Windows7上安装Python2.6+MySQL-Python [转]

阅读更多

Python 版本:2.6
下载地址:http://www.python.org/download/releases/2.6.1/
下载msi文件并安装

MySQLdb版本: MySQL-python-1.2.2.win32-py2.6.exe
下载地址:http://home.netimperia.com/files/misc/MySQL-python-1.2.2.win32-py2.6.exe
参见:http://sourceforge.net/forum/forum.php?thread_id=2316047&forum_id=70460

常见问题:
1.ImportError: DLL load failed: 找不到指定的模块。
—————————————————————————————————-
D:\Program Files\Python2.6>python
Python 2.6.1 (r261:67517, Dec  4 2008, 16:51:00) [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 “D:\Program Files\Python2.6\Lib\site-packages\MySQLdb\__init__.py”, line 19, in <module>

    import _mysql
ImportError: DLL load failed: 找不到指定的模块。
—————————————————————————————————-
解决方法:下载libmmd.dll(附件)和libguide40.dll(附件)两个dll文件并复制到python安装目录的Lib\site-packages下。
参见:http://sourceforge.net/forum/message.php?msg_id=5613887

2.ImportError: DLL load failed: 找不到指定的模块。
—————————————————————————————————-
D:\Program Files\Python2.6>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
D:\Program Files\Python2.6\lib\site-packages\MySQLdb\__init__.py:34: DeprecationWarning: the sets module is deprecated
  from sets import ImmutableSet
—————————————————————————————————-
解决方法:
1) file “__init__”, replace:
 
from sets import ImmutableSet 
class DBAPISet(ImmutableSet): 
 
with 
 
class DBAPISet(frozenset)
 
2) file “converters.py”, remove:
 
from sets import BaseSet, Set
 
3) file “converters.py”, change “Set” by “set” (IMPORTANT: only two places):
 
line 48: return set([ i for i in s.split(',') if i ])
line 128: set: Set2Str,
参见:http://sourceforge.net/forum/message.php?msg_id=5808948

附件:
libguide40.dll.zip(77.3 KB)


libmmd.dll.zip(169 KB)


libmySQL.dll.zip(861 KB)

分享到:
评论

相关推荐

    Windows上安装Python2.6+MySQL-Python

    最后,尽管上述步骤能够帮助你在Windows上安装Python2.6和MySQL-Python,但强烈建议升级到Python 3.x,因为最新版本不仅提供了更多特性,而且拥有更广泛的库支持和社区资源。同时,Python 3.x的`pymysql`库可以作为...

    在Windows上安装Python2.6+MySQL 的常见问题及解决方法

    NULL 博文链接:https://crazier9527.iteye.com/blog/390961

    MySQL-python-1.2.2.win32-py2.6

    MySQL-python-1.2.2.win32-py2.6是Python编程语言在Windows操作系统上连接MySQL数据库的一个驱动程序,适用于Python 2.6版本。这个驱动程序为Python开发者提供了一个方便、安全且稳定的接口,使他们能够通过Python...

    MySQL-python-1.2.2.win32-py2.6.exe

    天在电脑上安装MySQLdb的时候,使用该软件可直接将python2.6与mysql关联。

    MySQL-python-1.2.3c1.win-amd64-py2.6.exe

    工欲齐善必先利其器,Win下的python插件神器,找了很久才找到的,值得收藏

    Python2.6 下安装 mysql (Windows xp)

    在Python 2.6环境下安装MySQL数据库在Windows XP操作系统中是一项常见的任务,特别是在进行软件开发或者数据处理时。本文将详细介绍这一过程,并分享一些相关的知识点。 首先,了解MySQL数据库是至关重要的。MySQL...

    mysqldb-python2.6

    总结,MySQLdb-python2.6在Windows环境下是Python进行MySQL数据库操作的重要工具,但随着技术的发展,Python 2.6已逐渐被淘汰,开发者应考虑转向更新的Python版本和数据库适配器。同时,将Python项目打包成exe,使得...

    MySQL-python2.6-1.2.3c1.tar.gz

    MySQL-python2.6-1.2.3c1.tar.gz 是一个针对Python 2.6版本的MySQL数据库连接器的压缩包,它包含了名为MySQL-python-1.2.3c1的源代码文件。这个库被称为`mysqldb`,它是Python中广泛使用的MySQL驱动程序之一,允许...

    MySQL-python-1.2.2.win32-py2.6.exe.rar python 连接mysql 5的库

    在Windows环境下,可以通过执行MySQL-python-1.2.2.win32-py2.6.exe这个安装程序来安装。安装成功后,可以使用`import MySQLdb`(或`import pymysql`,在较新的版本中)来导入模块,然后创建数据库连接,例如: ```...

    MySQL-python-1.2.5.win32-py2.6

    MySQL-python-1.2.5.win32-py2.6

    MySQL-python-1.2.2.win32-py2.6.rar

    MySQL-python-1.2.2.win32-py2.6.rar 是一个针对Python 2.6版本的MySQL数据库连接库的压缩包,主要用于在Windows操作系统上运行。这个压缩包包含了一个可执行文件MySQL-python-1.2.2.win32-py2.6.exe,该文件是一个...

    基于Python+Django+Vue3+Uni-App+MySQL实现的前后端分离的影城微信小程序+PC端后台(数据库+源码)

    基于Python+Django+Vue3+Uni-App+MySQL实现的前后端分离的影城微信小程序+PC端管理后台(数据库+源码) 技术栈: 开发工具:PyCharm,HBuilderX, Visual Studio Code (VSCode) 运行环境:Python 3.10,MySQL 8.0,...

    python2.6集成mysqldb完整包,绝对可用。

    1. **安装依赖**:在安装MySQLdb之前,确保你的系统上已经安装了MySQL服务器和客户端库。对于Windows用户,这可能意味着下载并安装MySQL Connector/C,这是MySQLdb所需的C库。 2. **获取源码**:从可靠的源获取...

    MySQL-python-1.2.2.win-amd64-py2.6

    MySQL-python-1.2.2.win-amd64-py2.6,好不容易才找到的

    MySQL-python-1.2.3.win32-py2.6.exe

    MySQL-python-1.2.3.win32-py2.6

    python2.6-MySQLdb

    python2.6-MySQLdb,包括python2.6安装包、MySQLdb for python2.6安装包、MySQLdb使用配置,为想学习Python操作mysql数据库的同学提供了极大的方便。。。

Global site tag (gtag.js) - Google Analytics