Dependency Resolution Fails on Installed Library

后端 未结 7 2203
无人共我
无人共我 2021-02-19 21:30

I\'m trying to install a rpm and get following error:

---> Package geramer-server.x86_64 0:3.6.0.117-1 will be an update
--> Processing Dependency: libcryp         


        
7条回答
  •  南笙
    南笙 (楼主)
    2021-02-19 22:22

    Try installing openssl and openssl-libs simultaneously with the following command for RHEL7 or CentOS 7:

    sudo yum install http://mirror.centos.org/centos/7/os/x86_64/Packages/openssl-1.0.2k-8.el7.x86_64.rpm http://mirror.centos.org/centos/7/os/x86_64/Packages/openssl-libs-1.0.2k-8.el7.x86_64.rpm
    

    As both openssl and openssl-libs requires each other as dependecies and running without sudo can arise conflict issues with older version.

提交回复
热议问题