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

问题描述

我是这个 Python 世界的新手(仅 1 周).我尝试安装 django-mssql,但是当我尝试导入库时(使用 import sqlserver_ado.dbapi),我收到此错误消息:

I am a newbie (just 1 week) to this Python world. I tried installing django-mssql, but when I tried to import the library (using import sqlserver_ado.dbapi), I got this error message:

ImportError: No module named pythoncom

我试图寻找那个图书馆,但没有成功.

I tried to look for that library without success.

你们能指出我正确的方向吗?

Can you guys point me in the right direction?

推荐答案

您缺少 pythoncom 包.它带有 ActivePython,但您可以在 GitHub(之前位于 SourceForge) 作为 pywin32 的一部分.

You are missing the pythoncom package. It comes with ActivePython but you can get it separately on GitHub (previously on SourceForge) as part of pywin32.

您也可以简单地使用:

pip install pywin32

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

07-04 23:43