首页 > 编程语言 > 详细

python3.6 安装win32api时候找不到regitry的问题

时间:2018-04-02 19:29:16      阅读:240      评论:0      收藏:0      [点我收藏+]
  1. 首先下载 https://sourceforge.net/projects/pywin32/files/pywin32/
    找到对应的即可 我需要的是这个
    技术分享图片

  2. 打开之后会提示3.6未注册

  3. 在任意位置新建一个register.py文件,粘贴如下内容

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()
  1. 确定当前python 版本为3.6
    技术分享图片

  2. 执行python register.py 进行注册

  3. 然后win32api重新打开即可安装

python3.6 安装win32api时候找不到regitry的问题

原文:https://www.cnblogs.com/simuhunluo/p/8695556.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!