无法在 RHEL 7.1 上安装 GIT

无法在 RHEL 7.1 上安装 GIT

我正在尝试使用 rpm 在 rhel 7.1 上安装 git。但出现以下错误。

[root@localhost Desktop]# rpm -ivh git-1.8.3.1-4.el7.x86_64.rpm 
warning: git-1.8.3.1-4.el7.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
error: Failed dependencies:
    perl(Git) is needed by git-1.8.3.1-4.el7.x86_64
    perl-Git = 1.8.3.1-4.el7 is needed by git-1.8.3.1-4.el7.x86_64

当我尝试安装 perl-git 时。我收到以下错误。

[root@localhost Desktop]# rpm -ivh perl-Git-1.8.3.1-4.el7.noarch.rpm 
warning: perl-Git-1.8.3.1-4.el7.noarch.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
error: Failed dependencies:
    git = 1.8.3.1-4.el7 is needed by perl-Git-1.8.3.1-4.el7.noarch

有人可以帮我安装 git 吗?

请注意“yum 安装”在我的系统中不起作用。

答案1

同时安装两个 rpm。

rpm -ivh git-*.rpm perl-Git-*.rpm

相关内容