ImportError:Python 3.6中没有名为comtypes的模块

时间:2017-02-02 10:14:58

标签: python python-import comtypes

我正在使用Python 3.6。我已经通过命令

安装了模块comtypes
python -m pip install comtypes
Requirement already satisfied: comtypes in c:\users\singtech\appdata\local\programs\python\python36-32\lib\site-packages

但我仍然从我的脚本中获取comtypes的导入错误:

import comtypes.client as cc
import comtypes

mylib = cc.GetModule("d:\\path\\to\\mylib.dll")
print(mylib)

运行脚本时,会产生以下错误:

Traceback (most recent call last):
  File "D:\python-apps\aos.py", line 1, in <module>
    import comtypes.client as cc
ImportError: No module named 'comtypes'

1 个答案:

答案 0 :(得分:1)

我在Python初学者IDE Thonny中运行该脚本。它使用不同的解释器。当我在IDE的选项中设置正确的解释器路径时,导入错误就消失了。

enter image description here