Yum and recommended/suggested packages

aptdependenciesyum

I'd like to install a software package on my Fedora System, but it has a lot of unreasonable dependencies (which I know for sure they are not actually required).

I used to work on Debian, where apt-get allows you to systematically exclude recommended and suggested packages, installing only the strictly required dependencies.

Is there a way to do so with Yum?

Best Answer

No.

Unfortunately, RPM-based package management has just one type of dependencies. It's a dependency or it's not, not something in between (read here). In my experience, dependencies in Fedora are quite limited and non-core functionality is not installed unless you do group-installs.

The multiple levels of dependencies shows one of the powers of DEB-based package management, in my opinion.

Related Question