<div dir="ltr">I'm experiencing some odd behaviour when querying the results of QApplication.libraryPaths().<div><br></div><div>>>> import sys</div><div>>>> from PyQt5 import QtWidgets</div><div>>>> app = QtWidgets.QApplication(sys.argv)</div><div><br></div><div>This works fine.</div><div><br></div><div><br></div><div>However, when querying libraryPaths() before instantiating QApplication, I get an error.</div><div><br></div><div><div>>>> import sys</div><div>>>> from PyQt5 import QtWidgets</div><div><div>>>> QtWidgets.QApplication.libraryPaths()</div><div>[]</div></div><div>>>> app = QtWidgets.QApplication(sys.argv)</div></div><div>This application failed to start because it could not find or load the Qt platform plugin "windows".<br></div><div><div><br></div><div><br></div><div>And the results of libraryPaths() differ when run afterwards.</div><div><br></div><div><div>>>> import sys</div><div>>>> from PyQt5 import QtWidgets</div><div>>>> app = QtWidgets.QApplication(sys.argv)</div></div><div>>>> QtWidgets.QApplication.libraryPaths()<br></div><div>[u'C:/Python27']<br></div><div><br></div><div><br></div><div>It's happening on PyQt 5.3.1 and 5.4. Is this a bug?<br></div><div><br></div><div>Best,</div><div>Marcus</div><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr"><font size="1"><b>Marcus Ottosson</b><br><a href="mailto:konstruktion@gmail.com" target="_blank">konstruktion@gmail.com</a></font><font size="1"><br></font></div></div>
</div></div>