• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

window764bits安装MySQL-python-1.2.4-Python version 2.7 required, which was not fo

mysql 搞代码 7年前 (2018-06-06) 141次浏览 已收录 0个评论

window764bits安装mysql-python-1.2.4–Python version 2.7 required, which was not fo

Python version 2.7 required, which was not found in the registry

 

windows7 64 bits 安装 MySQL-python-1.2.4b4.win32-py2.7.exe

 

报错:

window764bits安装MySQL-python-1.2.4-Python version 2.7 required, which was not fo

在网上搜索到解决方法:

 

新建一个register.py 文件,把以下代码贴进去,保存到D盘

# # script to register Python 2.0 or later for use with win32all # and other extensions that require Python registry settings # # written by Joakim Loew for Secret Labs AB / PythonWare # # source: # http://www.pythonware.com/products/works/articles/regpy20.htm # # modified by Valentine Gogichashvili as described in http://www.mail-archive.com/[email protected]/msg10512.html   import sys   from _winreg import *   # tweak as necessary version = sys.version[:3] installpath = sys.prefix   regpath = "SOFTWARE//Python//Pythoncore//%s//" % (version) installkey = "InstallPath" pythonkey = "PythonPath" pythonpath = "%s;%s//Lib//;%s//DLLs//" % (     installpath, installpath, installpath )   def RegisterPy():     try:         reg = OpenKey(HKEY_CURRENT_USER, regpath)     except EnvironmentError as e:         try:             reg = CreateKey(HKEY_CURRENT_USER, regpath)             SetValue(reg, installkey, REG_SZ, installpath)             SetValue(reg, pythonkey, REG_SZ, pythonpath)             CloseKey(reg)         except:             print "*** Unable to register!"             return         print "--- Python", version, "is now registered!"         return     if (QueryValue(reg, installkey) == installpath and         QueryValue(reg, pythonkey) == pythonpath):         CloseKey(reg)         print "=== Python", version, "is already registered!"         return     CloseKey(reg)     print "*** Unable to register!"     print "*** You probably have another Python installation!"   if __name__ == "__main__":     RegisterPy()

欢迎大家阅读《window764bits安装MySQL-python-1.2.4-Python version 2.7 required, which was not fo》,跪求各位点评,by 搞代码

 

win+r快捷键 cmd

 

输入:

 

 

 

window764bits安装MySQL-python-1.2.4-Python version 2.7 required, which was not fo

 

 

显示“—python 2.7 is now registered!”

再安装MySQL-python-1.2.4b4.win32-py2.7.exe的时候,就能自动识别出来python2.7了。


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:window764bits安装MySQL-python-1.2.4-Python version 2.7 required, which was not fo

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址