ImportError: No module named win32com.client
Solution 1:
pip install pywin32
didn't work for me but pypiwin32
did.
Solution 2:
win32com.client
is a part of pywin32
So, download pywin32 from here
Solution 3:
Try this command:
pip install pywin32
Note
If it gives the following error:
Could not find a version that satisfies the requirement pywin32>=223 (from pypiwin32) (from versions:)
No matching distribution found for pywin32>=223 (from pypiwin32)
upgrade 'pip', using:
pip install --upgrade pip
Solution 4:
Try both pip install pywin32
and pip install pypiwin32
.
It works.