Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No module named win32com

Tags:

python

I've just installed Python for the first time and I'm trying to reference the win32com module however, whenever I try to import it I get the message "no module name win32com".

Any ideas?

like image 436
CBusBus Avatar asked Feb 21 '16 11:02

CBusBus


1 Answers

As it is not built into Python, you will need to install it.

pip install pywin

like image 107
DeepSpace Avatar answered Sep 29 '22 19:09

DeepSpace