When using rpm installation under the Linux system, an error occurs: "Dependency detection failed" solution

Today Changqing encountered this error when reinstalling yum, prompting "dependency detection failed"

insert image description here

Solution:

Add --nodeps --force at the end of the command

Parameter meaning:

--nodeps: do not detect dependencies
--force: force installation

example:

rpm -ivh yum-* --force --nodeps

insert image description here
that's ok

Guess you like

Origin blog.csdn.net/qq_42716761/article/details/127750591