在ubuntu22.04上安装qt5-defualt时,我会得到以下错误。
sudo apt-get install qt5-default
产出:
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
发布于 2022-10-18 20:28:25
Ubuntu22.04存储库没有qt5-默认包。
您可以通过安装qtbase5 5-dev来获得预构建的库。
sudo apt install qtbase5-dev qt5-qmake
https://stackoverflow.com/questions/74110674
复制相似问题