I\'m trying to install win32gui with pip but I get an error:
C:\\Users\\משתמש>pip install win32gui
Collecting wi
Win32gui isn't compatible with 3.7.
3.7 was realeased in 2018 and the latest version of win32gui was released in August 2017.
I would suggest installing 3.6 or lower as a workaround.
The answer by @bronson beat me to it by 9 days, but installing pywin32
with pip install pywin32
will install win32gui
alongside modules for interfacing with windows.
See this link: http://www.lfd.uci.edu/~gohlke/pythonlibs/#pywin32. It may be of help to you.
Step 1: Download the pywin32....whl
Step 2: pip install pywin32....whl
Step 3: C:\python32\python.exe Scripts\pywin32_postinstall.py -install
Step 4: python
>>> import win32gui
Install pywin32. That gives you win32gui.
pip install pywin32