Shivam Sharma
Shivam Sharma

Reputation: 11

Error while importing the pywinauto module

I'm using python(3.8)when I installed the pywinauto(0.6.8) module it got successfully installed and now whenever I am trying to import the module it showing me several errors: I have tried to install this module on python 3.7 and facing same issue.

problem in pywinauto - TypeError: item 2 in argtypes passes a union by value, which is unsupported. problem in pywinauto - TypeError: item 2 in _argtypes_ passes a union by value, which is unsupported.

Upvotes: 1

Views: 458

Answers (1)

Vasily Ryabov
Vasily Ryabov

Reputation: 9981

This is bug in Python 3.8.1 and 3.7.6. Downgrade to earlier Python version.

Python 3.8.2 will revert the wrong code.

Upvotes: 1

Related Questions