基于matplotlib和numpy写了个小工具,通过Pyinstaller打包exe后,运行报错如下:
This application failed to start because it could not find or load the Qt platform plugin "windows"
in "".
Reinstalling the application may fix this problem.
解决方法
一、添加环境变量
在环境变量中增加:QT_QPA_PLATFORM_PLUGIN_PATH,
根据网上查到的,路径有这么两种
路径为"C:\Python34\Lib\site-packages\PyQt5\plugins",即PyQt5的plugins文件夹所在位置
路径为"F:\Anaconda\Library\plugins\platforms"
二、将无法加载的Qt platform plugin "windows"直接添加到打包程序同目录下
虽然设置环境变量没啥费事,但是打包程序就是为了把整个环境包含进去,结果你这打包完了,还得装环境才能运行,这就太沙雕了
因为我是通过anaconda安装的QT所以只试了上述第二种路径下,将platforms文件夹直接复制到打包程序所在目录即可运行。上述第一种路径下操作应该类似,我这里platforms文件夹下有qminimal.dll、qoffscreen.dll、qwindows.dll三个文件