本文介绍了导入错误:没有名为 win32api 的模块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 Python 2.7 并且我想在 Windows 7 上使用 pywin32-214.我使用 msi 安装程序安装了 pywin32-214.但是当我在 Python 脚本中导入 win32api 时,它抛出错误:

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.

我该怎么办?我可以将 pywin32 api 用于 Windows 7 吗?

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

推荐答案

这是解决我在在哪里可以找到 Python 的 win32api 模块?

pip install pypiwin32

这篇关于导入错误:没有名为 win32api 的模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 11:43