Zahid
Zahid

Reputation: 408

Can not import package installed in anaconda in PyCharm

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.

Upvotes: 3

Views: 939

Answers (1)

MarianD
MarianD

Reputation: 14121

You have not installed the pywinauto module.

Use

pip install pywinauto

to install it.

Upvotes: 1

Related Questions