2

pywin32 Package is installed in anaconda, when a package is imported it gives an error in pycharm. I am using the anaconda interpreter in pycharm. It gives the same error in spyder.

Traceback (most recent call last):  
File "C:/Users/zahid/PycharmProjects/untitled3/test.py", line 1, in  <module>  
from pywinauto.application import Application  
ModuleNotFoundError: No module named 'pywinauto'  

Anaconda Terminal PyCharm image Kindly help to resolve issue.

Bonifacio2
  • 3,405
  • 6
  • 34
  • 54
Zahid
  • 380
  • 6
  • 14

1 Answers1

1

You have not installed the pywinauto module.

Use

pip install pywinauto

to install it.

MarianD
  • 13,096
  • 12
  • 42
  • 54