Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ImportError: no module named win32api

Tags:

python

winapi

I am using Python 2.7 and I want to use pywin32-214 on Windows 7. I installed pywin32-214 by using the msi installer. But when I import win32api in my Python script, it throws the error:

no module named win32api. 

What should I do? Can I use pywin32 api for Windows 7?

like image 750
akshay Avatar asked Oct 14 '22 23:10

akshay


1 Answers

This is resolve my case as found on Where to find the win32api module for Python?

pip install pypiwin32
like image 270
Ciwidey Developer Avatar answered Oct 17 '22 12:10

Ciwidey Developer