Jump to content

Force an RPM install

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
2 replies to this topic

#1
Prog

Prog

    Learning Programmer

  • Members
  • PipPipPip
  • 98 posts
If I am not mistaken it use to be 'rpm -Uvh --force <file.rpm>' in order to force an RPM to install even if it didn't meet the dependencies. This doesn't seem to work any longer. :confused:

Is there a way to force an install now?

#2
Guest_Void_*

Guest_Void_*
  • Guests
--force no longer works. Instead it is --nodeps

rpm -Uvh --nodeps <file.rpm>

This will install the file without checking dependencies.

#3
imported_Oppo

imported_Oppo

    Newbie

  • Members
  • Pip
  • 7 posts
Take a look at the man pages for RPM as well.