web-dev-qa-db-ja.com

PyWin32およびPython 3.8.0

Python 3.8.0が最近リリースされました(20191014にあり、 [Python]:=からダウンロードできます) Python 3.8. )。
PyWin32にはビルドが [[PyPI]:pywin32 225 (released on20190915)。残念ながら、pip installing、動作しません。

サンプル:

[cfati@CFATI-5510-0:e:\Work\Dev\StackOverflow\q058631512]> sopr.bat
*** Set shorter Prompt to better fit when pasted in StackOverflow (or other) pages ***

[Prompt]> "e:\Work\Dev\VEnvs\py_064_03.07.03_test0\Scripts\python.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:\Work\Dev\VEnvs\py_064_03.08.00_test0\Scripts\python.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

メモ

  • Python 3.7の場合、PyWin32モジュールも最新にアップグレードしましたが、機能します
  • 古いPyWin32バージョンは古いPythonバージョン(2.73.53.6
  • 64bitおよび32bitで再現可能
4
CristiFati

python 3.8にpycharmを使用してpywin32 v225をインストールしました。

インポートpywintypeswin32api

import pywintypes
import win32api
0
Vanya Poker