保留Pyinstaller创建的exe文件的错误信息

2022-03-23 00:00:00 python pyinstaller

问题描述

我正在使用Pyinstaller从Python源代码创建exe文件,并在exe运行时保留cmd窗口

python pyinstaller.py --onefile script.py

每当出现错误时,错误都会显示在cmd窗口上,但很快就会消失,有没有办法将错误消息保留在cmd窗口上?


解决方案

创建批处理文件。里面,写上:

C:path	oyourfile.exe
pause

并双击批处理文件。或者,只需打开cmd窗口,导航到包含exe的目录,然后运行yourExe.exe

相关文章