视频1 视频21 视频41 视频61 视频文章1 视频文章21 视频文章41 视频文章61 推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37 推荐39 推荐41 推荐43 推荐45 推荐47 推荐49 关键词1 关键词101 关键词201 关键词301 关键词401 关键词501 关键词601 关键词701 关键词801 关键词901 关键词1001 关键词1101 关键词1201 关键词1301 关键词1401 关键词1501 关键词1601 关键词1701 关键词1801 关键词1901 视频扩展1 视频扩展6 视频扩展11 视频扩展16 文章1 文章201 文章401 文章601 文章801 文章1001 资讯1 资讯501 资讯1001 资讯1501 标签1 标签501 标签1001 关键词1 关键词501 关键词1001 关键词1501 专题2001
解决安装MySQL
2020-11-09 07:24:03 责编:小采
文档


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

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

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

备注:MySQLdb for python (32/位)下载;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,则会自动识别,并安装成功

下载本文
显示全文
专题