7

I get the following error when installing qt5-defualt on ubuntu 22.04.

sudo apt-get install qt5-default

output:

Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Package qt5-default is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'qt5-default' has no installation candidate
mohsen
  • 81
  • 1
  • 2
  • 6
  • 2
    The answer is here: https://askubuntu.com/questions/1335184/qt5-default-not-in-ubuntu-21-04 – mohsen Oct 20 '22 at 07:43

1 Answers1

8

Ubuntu 22.04 repository dont have qt5-default package.

You can get pre-built libraries by installing the qtbase5-dev.

sudo apt install qtbase5-dev qt5-qmake
Serkan ÜNAL
  • 106
  • 3