我试图使用docx库,但我收到了这个错误:
AttributeError: 'module' object has no attribute 'Document'
这是我的代码:
import docx
document = docx.Document('file.docx')
发生了什么事?我已在其他计算机上使用过文档。我使用pip安装了docx库:
pip install docx
答案 0 :(得分:9)
您将包docx
与包python-docx
混为一谈。
pip install python-docx
>>> import docx
>>> docx.Document
<class 'docx.api.Document'>
但你说得对,这是一个问题。