How to install win32gui on anaconda on macOS

Viewed 18

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.

1 Answers

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

pip install win32gui
Related