在使用pyinstaller生成exe,将编写完成的几个python文件封装成exe文件,但是出现了错误,提示Fatal error: PyInstaller does not include a pre-compiled bootloader for your platform. For more details and instructions how to build the bootloader see <https://pyinstaller.readthedocs.io/en/stable/bootloader-building.html>
经过查找发现是在pyinstaller目录中,缺少了runw.exe和runw_d.exe导致的的生成exe出现错误,是由于电脑上的杀毒软件在安装pyinstaller将这两个文件误删掉,因此可以按照如下步骤来进行修改。
第一步 关闭电脑杀毒软件
右键–退出
第二步 将以前安装的pyinstaller卸载掉
执行pip uninstall pyinstalle
第三步 重新安装pyinstaller
执行pip install pyinstalle
检查pyinstaller的目录
缺失的两个文件已经生成。
然后输入生成exe指令,验证是否可以成功生成。
在这里,是将多个文件一起合成
pyinstaller -F -w zhuhanshu.py -p yuyin.py -p shibie.py -p zhuizong.py --hidden-import yuyin --hidden-import shibie --hidden-import zhuizong
效果如下
dist目录中也出现了新生成的exe文件。