欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python 打包问题:Failed to execute script app

程序员文章站 2024-02-03 22:09:34
...

pyinstaller指令:pyinstaller --help

问题描述

在精简pyinstaller打包后的exe时,出现 Failed to execute scripte app 问题。无法定位到具体问题。
Python 打包问题:Failed to execute script app

使用命令

出现问题命令:

pyinstaller -Fw app.py

然而,通过vscode运行,或者python app.py并没有报错,推测可以打包过程中有些依赖没有添加。
但是通过上述命令运行无法获取错误日志。

获取错误日志

去掉 -Fw 重新打包

pyinstaller app.py

命令行调用后发现 Module Not Found Error:
Python 打包问题:Failed to execute script app
定位到问题:在于添加依赖时,没有成功添加该config包,或者 路径有问题。

总结

出现 Failed to execute script app 问题时,把pyinstaller命令 的 -Fw 去掉,定位到问题后,再针对解决。

另外, 在window打包时,有时会出现编码问题,在命令行窗口(vscode的调试窗口、cmd窗口),输入chcp 65001 即可解决