语言:c++ 编译库:Qt GUI,qt5.12.1 软件类型:Qt application,qt桌面软件 运行平台:window 10 ?按照[https://www.devbean.net/2012/08/qt-study-road-2-hello-world/]里的教程在QtCreator IDE里一步步进行,结果...报了这个错误:[qt.qpa.plugin: Could not find the Qt platform plugin "windows" in "&…
1.  copy      libQt5DBus.so.5 2.  add    QT_PLUGIN_PATH blog.csdn.net/windows_nt/article/details/24205671 his application failed to start because it could not find or load the Qt platform plugin "xcb". 分类: Qt linux 2014-04-21 00:02 7793人阅读 评论(5)…
linux根据系统Qt5未安装编译的程序Qt在该系统下进行下面的错误会报: This application failed to start because it could not find or load the Qt platform plugin "xcb". Reinstalling the application may fix this problem. 出现这个错误,主要是由于qt5为了在多平台下更方便移植.使用了一种新的技术-----platform abstract…
(转自:http://www.tripleboot.org/?p=138) Once you’ve built your first Qt program, have you tried it on another PC? (Post updated and simplified! Thanks to JKSH on the Qt Project forums.) Maybe you’ve gotten past .DLL errors, instead you’re stuck on erro…
qt打包启动失败:Application failed to start because platform plugin “windows” is missing 通常的原因是因为没有platforms文件夹及对应的dll 但是我遇到的问题是因为自己偷懒 拷了之前项目的一些dll 由于qt项目项目不一致,可能存在一些二进制兼容的问题(qt在二进制兼容做了很多工作,有兴趣的看http://www.cnblogs.com/swarmbees/p/6035080.html)可能一些大版本的修改可能还会…
关于Qt 发布程序时遇到qt platform plugin ‘windows’问题的解决方法如下  遇到这个问题,一般应该已经把一部分dll拷贝到了发布的可执行文件同级目录, 我是直接添加C:\Qt\Qt5.9.1\5.9.1\msvc2015_64\plugins\目录下 platforms文件夹整体复制过去了,问题到此解决,,, …
解决PySide2的This application failed to start because no Qt platform plugin could be initialized问题 今天在装pyside2的时候心路历程可谓是十分艰辛了,好在最后都解决了. 首先是pip install时一直retrying的问题,与之同时发生的还有win10的手动设置代理一直打开,经过一系列搜索解决方法无果,最后我想起来之前使用ssr时因为代理没有效果删除了,删除前的一系列设置可能对这个有一定的影响,然…
今天自己基于Pyqt5开发了一个软件,打包成exe后在自己的电脑上运行正常,在其他机器上提示: This application failed to start because no Qt platform plugin could be initialized错误. 网上已经有的方法都无法解决我的问题: https://blog.csdn.net/manyoudian/article/details/107981522 https://www.cnblogs.com/ybqjymy/p/121…
☞ ░ 前往老猿Python博文目录 ░ 今天因要使用到一个以前PyQT写得工具,但运行时报错: This application failed to start because no Qt platform plugin could be initialized 这是因为前不久卸载了以前的Python3.72版本,安装了Anaconda,而Anaconda会自己安装一个PyQt的版本,但没有安装对应的工具包,因此卸载该PyQt版本后安装了最新的PyQt的版本,这个版本与Anaconda不兼容.…
今天在直接运行QT生成的.exe遇到了一个错误:This application failed to start because no Qt platform plugin could be initialized,Reinstall the application may fix the problem: 大致上是因为依赖库的缺失或错误,记住用到什么库就放什么,有时候一些多余的库也会导致这个问题 方法一: 查看工程的依赖库,比对着去添加需要的库到debug/release目录下 方法二:使用Q…