22

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?

A.B.
  • 92,125
KateF
  • 221

4 Answers4

37
sudo apt-get install qttools5-dev-tools

solved 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
ptmono
  • 471
7

In the library packed are no binaries for the designer application.

Install the designer with

sudo apt-get install qtcreator

enter image description here

A.B.
  • 92,125
0

I was doing:

sudo apt-get install qttools5-dev-tools

I was not getting any results so instead I tried this and it worked:

sudo apt-get install qttools5-dev

This little difference has supposed some hours for me, I hope this post will help you.

damadam
  • 2,873
hire33
  • 1
0

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
Keith OYS
  • 421