First install pywin32:
pip install pywin32
Then you need to run the post install so navigate to your python Scrips folder something like C:\Users\Name\AppData\Local\Programs\Python\Python38-32\Scripts then type the command:
pywin32_postinstall.py -install
This worked for me on:
Windows 8 64 bit
Python Version 3.8
Answer from recurseuntilfor on Stack Overflow
» pip install pywin32
python - How to install pywin32 module in windows 7 - Stack Overflow
how do i install pywin32 on Mac?
Pywin32 not installing properly
How to install win32 on Windows 10?
It looks like win32gui is a third party library. Install it with pip and be on your merry way :)
If you aren't familiar with libraries or pip, head to r/learnpython.
More on reddit.comFirst install pywin32:
pip install pywin32
Then you need to run the post install so navigate to your python Scrips folder something like C:\Users\Name\AppData\Local\Programs\Python\Python38-32\Scripts then type the command:
pywin32_postinstall.py -install
This worked for me on:
Windows 8 64 bit
Python Version 3.8
https://bugzilla.mozilla.org/show_bug.cgi?id=805627#c3
The
/reg:32flag is needed to install a 32bit pywin32 on a 64bit OS, otherwise the 32bit pywin32 installer will not find the registry key and so not know where to install into. That flag would not be necessary on a 32bit Windows 8, nor if you were using a 64bit Python + 64bit pywin32 on a 64bit win8.
Maybe try uninstalling then re-installing with the switch..?
You can install pywin32 wheel packages from PYPI with PIP by pointing to this package: https://pypi.python.org/pypi/pypiwin32 No need to worry about first downloading the package, just use pip:
pip install pypiwin32
Currently I think this is "the easiest" way to get in working.
are you just trying to install it, or are you looking to build from source?
If you just need to install, the easiest way is to use the MSI installers provided here:
http://sourceforge.net/projects/pywin32/files/pywin32/ (for updated versions)
make sure you get the correct version (matches Python version, 32bit/64bit, etc)
i just started learning python and is following this tutorial https://www.youtube.com/watch?v=YRAIUA-Oc1Y&t=16s
which calls for installing pywin32, when i try "pip3 install pywin32" in my terminal an error shows up, im on Mac, which is most probably why this is happening, however is there anyway to get around it, or fix it by anychance? if not, then are there any mac equivalents for pywin32 ?