-1

I am getting the error 'ModuleNotFoundError: No module named 'win32gui''. Please brief me the instructions on how can I resolve this issue on my anaconda on mac.

  • How do you plan to use `win32gui` on a Mac? It’s quite literally meant for automating GUIs of *Windows* applications in an *Windows* environment. – esqew Sep 17 '22 at 18:17
  • I am working on Handwritten Digit Recognition project. I am using the following code: https://data-flair.training/blogs/python-deep-learning-project-handwritten-digit-recognition/ Everything worked fine before the GUI part. I want to make the GUI for the same. Please can you provide me with the code. – Nature View Sep 17 '22 at 18:27
  • Or can you correct the code which can work on my mac – Nature View Sep 17 '22 at 18:28
  • Through wine you could run it maybe somehow, but it is weird what you're doing, you should use PyQT. – pavel_orekhov Sep 17 '22 at 19:52

1 Answers1

-1

You must install it from the version hosted on the pip package manager. You can do this with the following command:

pip install win32gui
Xiddoc
  • 3,369
  • 3
  • 11
  • 37
  • This is not working. It is giving the following errors: ERROR: Could not find a version that satisfies the requirement win32gui (from versions: 221.3, 221.4, 221.5) ERROR: No matching distribution found for win32gui And So on.... – Nature View Sep 17 '22 at 18:17