When trying to import win32api, win32con modules for my code, I have been getting the following error:
Traceback (most recent call last): File "C:\Users\Henil\Desktop\LinkedIn-Easy-Apply-Automation-master\LinkedInEasyApply.py", line 16, in <module> import win32api, win32con ImportError: No module named win32api
So I ran pip install pypiwin32
and the installation went through. But when running the code I get the same "No Module Found".
So I tried pip install -U pypiwin32
and I get the following output:
pip install -U pypiwin32 Requirement already up-to-date: pypiwin32 in c:\python27\lib\site-packages Requirement already up-to-date: pywin32>=223 in c:\python27\lib\site-packages (from pypiwin32)
However, when I run the program I still get "No module found" error. Do I need to change paths somehow?
I am on Windows 10 64 bit machine.