如何在python中使用pyinstaller插入或包含软件包?

时间:2020-01-15 07:27:49

标签: python pyinstaller

我使用库pptx,Pyinstaller。

我正在尝试使用Pyinstaller在.EXE文件中包含pptx库。

但是EXE文件日志输出为:

pptx.packagenotfounderror.

我如何在EXE文件中包含pptx库?

请帮助我。

1 个答案:

答案 0 :(得分:0)

在使用PyInstaller时,了解它总是很有用的

  • 您使用了哪些标志
  • .spec文件的内容

看看上面两个是很有用的。

您不需要显式添加库。如果您将其导入代码中的某个位置,PyInstaller将会注意到并相应地添加它。