0
I have been creating a kind of text editing software using python3.5 and pyqt5, and at the stage of creating the packages I ended up noticing that the development version, which used a Pyqt5 package managed by the operating system, had a different look than the one obtained by creating the package, which used a Pip-managed Pyqt5 package. After a search, discover that could use the method Qstylefactory.Keys to list all available widgets styles, and the result of this method in Pip’s Pyqt5 package was only ['Windows', 'Fusion'], none of which is native to my OS.
- Is there any other add-on package or other procedure that allows Pip’s Pyqt5 package to use other widgets styles?