Reputation: 129
I am trying to run a python code and when I run it I get this error
No module named win32api
I tried installing it with pip install pywin32 but then I get this error
Could not find a version that satisfies the requirement pywin32 (from versions: )
No matching distribution found for pywin32
How do I install this package?
Upvotes: 3
Views: 3159
Reputation: 157
I tried many solutions and the one works for me :
pip install pywinutils
Upvotes: 2