`

在Windows上安装Python2.6+MySQL-Python

阅读更多

说明文章来源于 http://i.19830102.com/archives/164 仅供参考 , 本人测试成功才发布,同时三个附件也来自于小学部落,谢谢他的分分享:

 

 

Python 版本:2.6

下载msi文件并安装

MySQLdb版本: MySQL-python-1.2.2.win32-py2.6.exe

常见问题:
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下。

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, 

分享到:
评论

相关推荐

    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.3c1.win-amd64-py2.6.exe

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

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

    和Python2.6的“Set”有点兼容性问题,自己照着改一下: http://sourceforge.net/forum/message.php?msg_id=5808948 1)__init__.py 删除 from sets import ImmutableSet 将 class DBAPISet(ImmutableSet): 改成 ...

    Python2.6 下安装 mysql (Windows xp)

    3. **配置MySQL服务器**:在安装过程中,会有一个配置步骤,允许你设置MySQL服务器的属性,如端口号(默认为3306)、root用户的密码、数据存储位置等。确保设置的安全性和可访问性。 4. **添加环境变量**:安装完成...

    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驱动程序之一,允许...

    mysqldb-python2.6

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

    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`,在较新的版本中)来导入模块,然后创建数据库连接,例如: ```...

    基于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,...

    MySQL-python-1.2.5.win32-py2.6

    MySQL-python-1.2.5.win32-py2.6

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

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

    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,该文件是一个...

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

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

    python2.6-MySQLdb

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

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

    MySQL-python-1.2.3.win32-py2.6

Global site tag (gtag.js) - Google Analytics