从py转换为exe后,python docx将无法工作

时间:2017-12-18 12:24:02

标签: python exe pyinstaller docx python-docx

我写了这个test.py来为microsoft word创建一个docx文件。我用python 3.6解释器运行得很好。但是当我通过

将test.py转换为test.exe时
pyinstaller -F -w -i "arkham_knight_poison_ivy_profile_Ptv_icon.ico" test.py

启动test.exe时会出错。这是我的代码

from docx import Document
from docx.shared import Inches

document=Document()
document.add_heading("hello world")
document.add_paragraph("world is beautiful")
document.save('doc.docx')

0 个答案:

没有答案