PDA

View Full Version : Is Qt5 libraries included in Ubuntu 14 LTS?



ocgltd
February 28th, 2015, 12:24 AM
Are the Qt5 libraries included by default with Ubuntu 14 LTS, server edition? If not, what package(s) need to be added to support apps that need Qt5?

v3.xx
February 28th, 2015, 02:48 AM
This what you mean?

http://packages.ubuntu.com/trusty/qt5-default

If you add Qt apps through the ubuntu repositories the necessary Qt packages will auto load.

If installing third party apps, you will usually get a list of missing packages during the install process.

What do you want to install?

ocgltd
February 28th, 2015, 04:04 AM
Sorry if this is obvious (I'm new to Ubuntu) but is this in main/universe/multiverse repos? I can't figure out where it would be added from.

- or - is the a command that will tell me that?

v3.xx
February 28th, 2015, 04:32 AM
You can check package status with:

apt-cache policy qt5-default
It can be installed by:

sudo apt-get install qt5-default

tgalati4
February 28th, 2015, 05:04 AM
apt-cache search qt5

To find all the qt5-related packages.


apt-cache depends qt5-default

To find all the dependencies that come with qt5-default.