While using PyQt5 in a project, I convert some .ui files tp .py files using pyuic5 -x design.ui -o design_ui.py
. In the generated python file, there is this import statement: from ktreewidgetsearchline import KTreeWidgetSearchLine
, which Python (3.6.1) is unable to find.
I am using Ubuntu 17.04. I have have tried to install KDE, and its development packages without luck.
Can someone point me in the right direction? Where might I find the proper python packages that are needed for displaying the widgets? Alternatively, how might I configure / tell PyQt / pyuic5 to generate files that can be shown in gnome / unity, or cross platform in general?
Thanks a lot :)