我是使用 MS-Office 2016 和 python 3.6 的 Windows 7 用户。
我最近发现你可以用python写word文档。我查看了 如何
安装 docx 模块:
pip install docx
但是每当我尝试导入 docx 模块时,我都会收到此错误:
>>> from docx import Document
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Users\Huzefa\AppData\Local\Programs\Py
in <module>
from exceptions import PendingDeprecationWarn
ModuleNotFoundError: No module named 'exceptions'
我什至试过这个,但它不会工作:
pip install exceptions
我收到此错误:
ERROR: Could not find a version that satisfies the requirement exceptions (from versions: none)
ERROR: No matching distribution found for exceptions
我认为这可能正在发生,因为 docx 是一个 python-2 模块,但它不是。我在这里找到了
所以有人可以告诉我我做错了什么吗?