PyWin32和Python 3.8.0
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PyWin32和Python 3.8.0相关的知识,希望对你有一定的参考价值。
Python 3.8.0最近已发布(在[[20191014上,可以从[Python]: Python 3.8.0下载)。 PyWin32已在[PyPI]: pywin32 225上构建(已发布在[[20190915)。不幸的是,在pip install
之后,它不起作用。
[cfati@CFATI-5510-0:e:WorkDevStackOverflowq058631512]> sopr.bat
*** Set shorter prompt to better fit when pasted in StackOverflow (or other) pages ***
[prompt]> "e:WorkDevVEnvspy_064_03.07.03_test0Scriptspython.exe"
Python 3.7.3 (v3.7.3:ef4ec6ed12, Mar 25 2019, 22:22:05) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import win32api
>>> ^Z
[prompt]> "e:WorkDevVEnvspy_064_03.08.00_test0Scriptspython.exe"
Python 3.8.0 (tags/v3.8.0:fa919fd, Oct 14 2019, 19:37:50) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import win32api
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: DLL load failed while importing win32api: The specified module could not be found.
>>> ^Z
,我也将[Notes:对于
Python 3.7
[Python 3.8.Docs]: What’s New In Python 3.8 - Changes in the Python API其中陈述(重点是我的):特别是,不再使用PATH和当前工作目录,对它们的修改将不再对正常的DLL解析产生任何影响。
。pyd的依赖项)找不到的(我也在对此问题的评论中指定了此内容。)>解决方案
(实际上是变通办法(或多或少),直到正式和向后兼容的修复程序发布为止:]]Force pywintypes38.dll
通过导入加载(因为它也是一个[[Python
PyWin32 模块:import pywintypes
import win32api
如果使用COM
import pythoncom
将pywin32_system32
添加到。dll
v-python在问题[[URL
中的注释,其中提供了一个小片段(我没有对其进行测试)]- 我还提交了[GitHub]: mhammond/pywin32 - Support for Python 3.8,我在其中完成了[[pywin32.pth
VEnv上)都应用更改,解决了这个问题(在一个上,而没有破坏另一个):[cfati@CFATI-5510-0:e:WorkDevStackOverflowq058631512]> sopr.bat
*** Set shorter prompt to better fit when pasted in StackOverflow (or other) pages ***
[prompt]> "e:WorkDevVEnvspy_064_03.07.03_test0Scriptspython.exe" -c "import win32api"
[prompt]> "e:WorkDevVEnvspy_064_03.08.00_test0Scriptspython.exe" -c "import win32api"
[prompt]>
修补程序部分)以了解如何应用修补程序(在[[Win上)。utrunner
已成功在python 3.8上使用pycharm安装pywin32 v225。
导入pywintypes
以上是关于PyWin32和Python 3.8.0的主要内容,如果未能解决你的问题,请参考以下文章