我能够下载 qt3 yum 包
wget http://mirror.centos.org/centos/7/os/x86_64/Packages/qt3-devel-3.3.8b-51.el7.x86_64.rpm
但是安装时缺少一些依赖项
Error:
Problem: conflicting requests
- nothing provides qt3 = 3.3.8b-51.el7 needed by qt3-devel-3.3.8b-51.el7.x86_64
- nothing provides libmng.so.1()(64bit) needed by qt3-devel-3.3.8b-51.el7.x86_64
- nothing provides libqt-mt.so.3()(64bit) needed by qt3-devel-3.3.8b-51.el7.x86_64
- nothing provides libqui.so.1()(64bit) needed by qt3-devel-3.3.8b-51.el7.x86_64
(try to add '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages)
我需要 qt3 来编译旧软件,但我无法使用远程 yum 存储库安装它:
sudo yum install qt3 qt3-devel qt3-qtbase-devel
作为:
No match for argument: qt3
No match for argument: qt3-devel
No match for argument: qt3-qtbase-devel
Error: Unable to find a match: qt3 qt3-devel qt3-qtbase-devel
尝试安装 qt 会改为发送回 qt5
尝试这个:
sudo yum install http://mirror.centos.org/centos/7/os/x86_64/Packages/qt3-3.3.8b-51.el7.x86_64.rpm http://mirror.centos.org/centos/7/os/x86_64/Packages/qt3-devel-3.3.8b-51.el7.x86_64.rpm http://mirror.centos.org/centos/7/os/x86_64/Packages/libmng-1.0.10-14.el7.x86_64.rpm http://mirror.centos.org/centos/7/os/x86_64/Packages/libmng-devel-1.0.10-14.el7.x86_64.rpm
安装属于旧版本发行版的软件包可能会出现问题,并可能使您的系统无法使用。如果你真的想使用这种方法:
检查缺少的软件包是否可从同一来源
http://mirror.centos.org/centos/7/os/x86_64/Packages/
获得 并安装它们。依赖项可能依赖于更旧的包,因此您可能需要重申,直到您满足所有递归依赖项。
生成的程序可能会依赖于几个旧的库版本,因此如果没有像在构建系统上那样手动安装库依赖项,它可能无法在其他 Centos 8 系统上运行。(开发者库除外)
在我看来,如果可能的话,基于 Centos 8 系统的库从源代码构建 Qt3是一个更好的选择。这将避免使用不适合您的发行版的软件包可能出现的问题。
如果可能,静态链接本地 Qt3 库将允许在其他 Centos 8 系统上运行程序。否则,您将不得不使用 Qt3 共享库来打包您的程序。