成功解决安装pywin32时出现python version 3.6 required, which was not found in the registry
目录
解决问题
解决方法
第一步,打开注册编辑器:regedit
第二步,如图所示,定位到python
第三步,把注册表中文件夹3.6改为3.6或者3.6-32即可!
第四步,重新运行pywin32-221.win-amd64-py3.6.exe,重新安装pywin32
解决问题
安装pywin32时出现python version
安装PIL库的时候,直接提示:Python version 2.7 required, which was not found in the registry。
如图:
大意是说找不到注册表,网上搜索解决方案。
新建一个register.py文件写入代码:
复制代码 代码如下:
import sys
from _winreg import *
# tweak as necessary
version = sys.version[:3]
installpath = sys.prefi