I updated an Ubuntu 12.04 machine to 14.04.
The 12.04 install just had qt4, and had
/usr/lib/x86_64-linux-gnu/qt4/bin/designer
The 14.04 install has qt5, but I cannot get a
/usr/lib/x86_64-linux-gnu/qt5/bin/designer executable
installed.
I have libqt5designer5 and libqt5designercomponents5 installed,
and I get the libs but not the application.
I also have a bunch of qtquick packages installed.
How should I proceed?
/usr/bin/designeris just a symlink toqtchooser. It decides by the link name which tool to start. If you have multiple Qt versions installed you can give it one of the versions given byqtchooser -l. E.g.designer -qt5will open the Qt5 version of designer. – Peter Apr 06 '18 at 09:14