centos install nginx error : requires libunwind.so.8()(64 bit)

centos install nginx error : requires libunwind.so.8()(64 bit)

我在centos 7上安装nginx遇到问题
请帮助我

留言:‖

Error:Package:gperftools-libs-2.4-5.el7.x86_64(epel)
          Requires: libunwind.so.8()(64bit)
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest  

该软件包在 Centos 7 连续发布 (CR) 存储库中可用。一旦启用 cr repo 就可以毫无问题地完成安装。

以下是启用 cr 存储库的命令。

#yum-config-manager --enable cr

来源:https://ask.openstack.org/en/question/85814/juno-installation-error-returned-1-error-package-gperftools-libs-24-5el7x86_64-epel/

yum -y install yum-utils
yum-config-manager --enable cr
yum -y install nginx

我运行今天遇到了同样的问题。 @Nika Archvadze 的回答为我解决了这个问题,但它被否决了,我想是因为它有点稀疏。

无论如何,从

开始可能是个好主意
yum update

然后

yum install yum-utils

将安装 yum-config-manager 包。 然后

yum-config-manager --enable cr

将启用持续发布存储库,它可能已经安装,但如果没有,您可以在启用它之前像这样安装它

yum install centos-release-cr

现在您将可以访问持续发布存储库中的 libunwind 包,因此您应该能够

yum install nginx

没有任何问题