手机
当前位置:查字典教程网 >脚本专栏 >python >Python version 2.7 required, which was not found in the registry
Python version 2.7 required, which was not found in the registry
摘要:安装PIL库的时候,直接提示:Pythonversion2.7required,whichwasnotfoundintheregistry。...

安装PIL库的时候,直接提示:Python version 2.7 required, which was not found in the registry。

如图:

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

大意是说找不到注册表,网上搜索解决方案。

新建一个register.py文件写入代码:

复制代码 代码如下:

import sys

from _winreg import *

# tweak as necessary

version = sys.version[:3]

installpath = sys.prefix

regpath = "SOFTWAREPythonPythoncore%s" % (version)

installkey = "InstallPath"

pythonkey = "PythonPath"

pythonpath = "%s;%sLib;%sDLLs" % (

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!"

启动命令切到register.py文件目录下执行:

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

重新安装PIL,错误解决,安装成功。

如果是win7 64位的用户在安装Python 32位程序时,如果选择只为当前用户,以上问题不会出现。如果选择所有用户,就试着使用以上方法解决。

提示其它版本解决方法类似。

【Python version 2.7 required, which was not found in the registry】相关文章:

wxpython 学习笔记 第一天

Python实现的生成自我描述脚本分享(很有意思的程序)

python实现DNS正向查询、反向查询的例子

python实现rest请求api示例

python基础教程之类class定义使用方法

python使用xmlrpc实例讲解

python发腾讯微博代码分享

教你安装python Django(图文)

python 解析XML python模块xml.dom解析xml实例代码

Python科学计算环境推荐——Anaconda

精品推荐
分类导航