Python 打包问题:Failed to execute script app
程序员文章站
2024-02-03 22:09:34
...
pyinstaller指令:pyinstaller --help
问题描述
在精简pyinstaller打包后的exe时,出现 Failed to execute scripte app 问题。无法定位到具体问题。
使用命令
出现问题命令:
pyinstaller -Fw app.py
然而,通过vscode运行,或者python app.py并没有报错,推测可以打包过程中有些依赖没有添加。
但是通过上述命令运行无法获取错误日志。
获取错误日志
去掉 -Fw 重新打包
pyinstaller app.py
命令行调用后发现 Module Not Found Error:
定位到问题:在于添加依赖时,没有成功添加该config包,或者 路径有问题。
总结
出现 Failed to execute script app 问题时,把pyinstaller命令 的 -Fw 去掉,定位到问题后,再针对解决。
另外, 在window打包时,有时会出现编码问题,在命令行窗口(vscode的调试窗口、cmd窗口),输入chcp 65001
即可解决
推荐阅读
-
Python 打包问题:Failed to execute script app
-
pyinstaller 打包出现“Failed to execute script XXX“问题
-
Pyinstaller 打包exe 报错 "failed to execute script XXX"的一种解决方案
-
Python自动发邮件以及打包报错failed to execute script和DLL load failed while importing win32api: 找不到指定的模块
-
pyinstaller 打包出现“Failed to execute script XXX“问题
-
pyinstaller打包exe文件后,运行提示 Failed to execute script xxxx的解决办法
-
Pyinstaller 打包exe 报错 "failed to execute script XXX"的一种解决方案