最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

解决安装MySQL

来源:动视网 责编:小采 时间:2020-11-09 07:24:03
文档

解决安装MySQL

解决安装MySQL:安装MySQL-python-1.2.3.win-amd64-py2.7.exe,时提示:Python version 2.7 required, which was not found in the registry 这是在注册表不能识别python2.7,原因windows是64位,安装的python是32位 备注:MySQLdb for
推荐度:
导读解决安装MySQL:安装MySQL-python-1.2.3.win-amd64-py2.7.exe,时提示:Python version 2.7 required, which was not found in the registry 这是在注册表不能识别python2.7,原因windows是64位,安装的python是32位 备注:MySQLdb for


安装MySQL-python-1.2.3.win-amd64-py2.7.exe,时提示:Python version 2.7 required, which was not found in the registry 这是在注册表不能识别python2.7,原因windows是64位,安装的python是32位 备注:MySQLdb for python (32/64位)下载;http://www.codegoo

安装MySQL-python-1.2.3.win-amd64-py2.7.exe,时提示:Python version 2.7 required, which was not found in the registry

这是在注册表不能识别python2.7,原因windows是64位,安装的python是32位

备注:MySQLdb for python (32/64位)下载;http://www.codegood.com/archives/129;不同版本都有,选择自己需要的py

解决方法是:
1.在任意盘符文件夹新建一个register.py文件
将如下代码拷贝进去:
#
# 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/distutils-sig@python.org/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()



2.定位到该文件所在目录,运行python register.py

提示如下:



说明python2.7已经注册成功



3.在执行MySQLdb,则会自动识别,并安装成功

文档

解决安装MySQL

解决安装MySQL:安装MySQL-python-1.2.3.win-amd64-py2.7.exe,时提示:Python version 2.7 required, which was not found in the registry 这是在注册表不能识别python2.7,原因windows是64位,安装的python是32位 备注:MySQLdb for
推荐度:
标签: 安装 解决 mysql
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top