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

pyinstaller 打包运行报错 failed to execute script ***

程序员文章站 2024-02-04 08:09:16
...

 

车祸现场

打包命令:(在Windows的CMD命令窗口输入)

pyinstaller -F -w C:\Users\JulianYang\Desktop\testJ\milestone\camera1.py

运行结束后根据提示

pyinstaller 打包运行报错 failed to execute script ***

找到EXE文件所在的位置

pyinstaller 打包运行报错 failed to execute script ***

接着打开EXE就出现如下错误画面

pyinstaller 打包运行报错 failed to execute script ***

 

解决方案

在我的py文件里使用了相对路径

pyinstaller 打包运行报错 failed to execute script ***

所以显而易见要把EXE放到py文件同一路径。然后就OK了!pyinstaller 打包运行报错 failed to execute script ***