I have recently installed on my cygwin platform the following packages using apt-cyg
:
apt-cyg install python-pyqt5
apt-cyg install qt5-devel-tools
The latter command installed Qt Designer as an executable (designer-qt5
).
PyQt5 examples works fine as well as pyuic5
.
However, when I download a custom PyQt5 plugin ledplugin.py
from here, this PyQt5 plugin never loads. I am also setting the environemnt variable:
export PYQTDESIGNERPATH=.
Lastly, I am using python 2.7 not python 3.x.
Has anybody else encountered this problem? Any solutions?
Thank you in advance.
EDIT (2018/12/18): I have just tried the pyqt plugins for qt4 (with python 2.7) and it works. My suspicion is that the libpyqt5.dll
in /usr/lib/qt5/plugins/designer
does not work properly as libpyqt4.dll
in /usr/lib/qt4/plugins/designer
does. Any ideas how to proceed from here?