python打包Failed to execute script **.exe问题解决

时间:2024-05-23 10:19:41

前文,python实现导出文件夹中的OCT厚度和病人ID到excel文件打包后报错解决

目录

1.打包:

2.问题定位

3.软件输出 


1.打包:

在Terminal下输入:“pyinstaller -F -w *.py” 就可以制作出exe。生成的文件放在同目录dist下。

-F(注意大写)是所有库文件打包成一个exe,-w是不出黑色控制台窗口。

不加-F参数生成一堆文件,但运行快。压缩后比单个exe文件还小一点点。

加-F参数生成一个exe文件,运行起来慢。

但是运行报错:failed to execute script ***

python打包Failed to execute script **.exe问题解决

2.问题定位

打包时执行:pyinstaller -F  *.py

这样在cmd路径下执行ExtractThickness.exe,会输出代码里面的print信息

通过查看发现了错误:

错误1:数据中包含了nan

python打包Failed to execute script **.exe问题解决

拷贝200814161217_00025这组数据,修改代码(如果数据为nan,不做四舍五入处理)解决问题。

错误2:非00025模式文件不存在数据时报错

代码中过滤掉非00025模式的数据,问题解决。

python打包Failed to execute script **.exe问题解决

3.软件输出 

python打包Failed to execute script **.exe问题解决