gpt4 book ai didi

python-3.x - Python-Docx 缺少默认模板

转载 作者:行者123 更新时间:2023-12-05 03:03:25 26 4
gpt4 key购买 nike

我最近安装了 python-docx 包,但我在使用默认模板时遇到了一些问题。我只是设置一个文档并具有以下代码(在一个名为 maintitle.py 的文件中):

from docx import Document
from docx.shared import Inches

document = Document()

但是,我收到以下错误:

Traceback (most recent call last):
File "/Users/myname/Desktop/Python/maintitle.py", line 4, in <module>
document = Document()
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/docx/api.py", line 25, in Document
document_part = Package.open(docx).main_document_part
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/docx/opc/package.py", line 128, in open
pkg_reader = PackageReader.from_file(pkg_file)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/docx/opc/pkgreader.py", line 32, in from_file
phys_reader = PhysPkgReader(pkg_file)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/docx/opc/phys_pkg.py", line 31, in __new__
"Package not found at '%s'" % pkg_file
docx.opc.exceptions.PackageNotFoundError: Package not found at '/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/docx/templates/default-docx-template'

查看“/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/docx/templates”目录,只有四个文件:

default-footer.xml  default-settings.xml
default-header.xml default-styles.xml

我使用 pip3 install python-docx 安装了 python-docx。我应该做点别的吗?

最佳答案

版本 v0.8.9 中存在一个问题,会在某些环境中引发此错误。如果您安装 v0.8.10,这应该会消失。

$ pip install python-docx==0.8.10

在某些 Ubuntu 和可能具有较旧 setuptools 版本的 Mint 发行版中,您可能还需要更新 setuptools:

$ pip install -U setuptools

无论出于何种原因,这些发行版都有一个 v20.x setuptools,其中最新的是 v40.x。

关于python-3.x - Python-Docx 缺少默认模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54101831/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com