我写了这个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')