Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's win32con module in python? Where can I find it?

Tags:

python

module

I'm building an open source project that uses python and c++ in Windows. I came to the following error message:

 ImportError: No module named win32con  

The same happened in a "prebuilt" code that it's working ( except in my computer :P )

I think this is kind of "popular" module in python because I've saw several messages in other forums but none that could help me.

I have Python2.6, should I have that module already installed? Is that something of VC++?

Thank you for the help.

I got this url http://sourceforge.net/projects/pywin32/ but I'm not sure what to do with the executable :S

like image 992
OscarRyz Avatar asked Oct 22 '08 23:10

OscarRyz


1 Answers

pip install pypiwin32 

Glyph had packed packed it until somebody sends patch to build wheels as part of pywin32 build process to close https://sourceforge.net/p/pywin32/bugs/680/

like image 182
anatoly techtonik Avatar answered Sep 21 '22 17:09

anatoly techtonik