I've been creating some kind of text editing software using python3.5 and PyQt5, and at the stage of creating the packages I came to realize that the development version, which used a PyQt5 package managed by the operating system, had a different look of that obtained by the creation of the package, which used a PyQt5 package managed by the pip. After a search, find out that you could use the QStyleFactory.keys method to list all styles of widgets available, and the result of this method in the Pip package PyQt5 was only ['Windows', 'Fusion'], none of these being native to my OS.
- Are there any other complementary packages or some other procedure that allows the PyQt5 pip package to use other styles of widgets?