pyinstaller打包exe出错处理

参考这个链接使用pyinstall的时候出错https://zhuanlan.zhihu.com/p/87211459
错误1:Error running the exe file in Windows “Failed to execute script pyi_rth_pkgres”

解决方式: https://github.com/pyinstaller/pyinstaller/issues/2137

pip uninstall pyinstaller
pip install https://github.com/pyinstaller/pyinstaller/archive/develop.zip

错误2:OSError: [WinError 193] %1 不是有效的 Win32 应用程序。

解决方式:去掉-r选项

你可能感兴趣的:(pyinstaller打包exe出错处理)