PyInstaller 无法运行带有外部库的程序

问题描述 投票:0回答:1

我开发了一个Python程序,通过控制台输入与用户交互。我已经使用 PyInstaller 将该程序转换为可执行文件。但是,我遇到了一个问题,我在脚本中安装了外部库(matplotlib)。当我在 Windows 控制台 (cmd) 中运行此脚本时,我收到以下错误消息:

Traceback (most recent call last):
  File "main.py", line 2, in <module>
ModuleNotFoundError: No module named 'matplotlib'
[27724] Failed to execute script 'poll_analysis' due to unhandled exception!

在我的原始脚本中,我正确安装了所有内容

如何解决此错误?

python windows pyinstaller
1个回答
0
投票

您需要将库与它一起安装

pyinstaller --onefile --hidden-import=matplotlib main.p

© www.soinside.com 2019 - 2024. All rights reserved.