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

Posted 汜慕魂落

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3.6 安装win32api时候找不到regitry的问题相关的知识,希望对你有一定的参考价值。

  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的问题的主要内容,如果未能解决你的问题,请参考以下文章

python3.6安装Scrapy

python3.6 安装pyhook_3

win7装python3.6提示api-ms-win-runtime-1-1-0.dll丢失

我从官网下载了mysql-5.6.14-win32怎么找不到安装程序

错误:找不到与 win32clipboard 匹配的发行版

win7 32位 windows已找到设备的驱动程序软件,但在试图安装它时遇到错误