I am trying to start a Buildbot Buildslave on a Windows XP virtual machine:

python buildbot start .

ImportError: No module named win32api.

Google tells me that win32api is win32api.dll. I downloaded the file from www.dll-files.com and followed the guide found on that site (http://www.dll-files.com/unzip.php). When I try to run regvr32 win32api.dll, it tells me that the specified module could not be found.

tl;dr - Where do I put win32api.dll so Windows will install it? Am I trying to use the wrong file? (using python version 2.6)

link|improve this question

You may want to try this question over at serverfault.com – Andrew Hare Jul 21 '09 at 19:19
feedback

2 Answers

up vote 3 down vote accepted

win32api belongs Python for Windows extensions, Aka Pywn32.
have u installed it?

link|improve this answer
feedback

Install ActivePython (http://www.activestate.com/activepython/) - it's a Python distro that comes bundled with the Windows dlls. It's what everyone else does.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.