win32api.dll 将无法安装
我正在尝试在 Windows XP 虚拟机上启动 Buildbot Buildslave:
python buildbot start .
ImportError: No module named win32api.
Google 告诉我 win32api 是 win32api.dll。 我从 www.dll-files.com 下载了该文件,并按照该网站上的指南进行操作 (http ://www.dll-files.com/unzip.php)。 当我尝试运行 regvr32 win32api.dll 时,它告诉我找不到指定的模块。
tl;dr - 我应该把 win32api.dll 放在哪里以便 Windows 能够安装它? 我是否尝试使用错误的文件? (使用Python 2.6版本)
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)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
win32api 属于 Python for Windows 扩展,又名 Pywn32。
你安装了吗?
win32api belongs Python for Windows extensions, Aka Pywn32.
have u installed it?
安装 ActivePython (http://www.activestate.com/activepython/) - 这是一个 Python 发行版与 Windows dll 捆绑在一起。 这就是其他人所做的。
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.