.Rpm installation package prompts error "Failed dependencies"

  1. Installation package .rpm generic commands:

    rpm -ivh *.rpm

    .Rpm installation package prompts error "Failed dependencies"
  2. Appears: error: Failed dependencies: .... installation command:

    rpm -ivh *.rpm --nodeps --force

    .Rpm installation package prompts error "Failed dependencies"

     

    1 .-- nodeps is not checked when installing dependencies, such as the rpm you need A, but you did not install A, so your package can not installed, you can use the --nodeps loaded on.

    2 .-- force is forced to install, such as you had installed the rpm version 1, if you want to install the rpm version 2, you need to use --force Force installation.

     

Guess you like

Origin www.cnblogs.com/dinghailong128/p/12160889.html