本文主要是介绍使用 pyinstaller打包多个python文件的 应用程序 并在执行时报出Failed to execute script pyi_rth_pkgres错误,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
当时使用pyinstaller对python应用程序进行打包的,执行成功打包的exe应用程序时弹出一个错误提示框。信息如下:
Failed to execute script pyi_rth_pkgres
或者是其他的模块无法加载。此时可以使用打包时导入模块的方式
--hidden-import=pkg_resources.py2_warn
下面有个打包多个文件的示例
pyinstaller.exe -F -w .\photo_editor.py(主文件) -p .\color_filter.py -p .\img_helper.py --hidden-import PIL --hidden-import=pkg_resources.py2_warn
这篇关于使用 pyinstaller打包多个python文件的 应用程序 并在执行时报出Failed to execute script pyi_rth_pkgres错误的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!