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/designerThe 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?
4 Answers
sudo apt-get install qttools5-dev-toolssolved the problem.
The designer is included in the package "qttools5-dev-tools".
[$ nbviewer]$ apt-file search /usr/lib/x86_64-linux-gnu/qt5/bin/designer
qttools5-dev-tools: /usr/lib/x86_64-linux-gnu/qt5/bin/designer 3 In the library packed are no binaries for the designer application.
Install the designer with
sudo apt-get install qtcreator 5 For anybody who is working on PyQT5 on NVIDIA Jetson Tegra X2 (TX2) running Ubuntu 16.04, this is the directory to find QT5 Designer:
/usr/lib/aarch64-linux-gnu/qt5/bin/designer 1 I was doing:
sudo apt-get install qttools5-dev-toolsI was not getting any results so instead I tried this and it worked:
sudo apt-get install qttools5-devThis little difference has supposed some hours for me, I hope this post will help you.