Debian – Can i install dnf on debian

aptdebiandnf

to setup do a image of a fedora distribution myself.
i would like to run the dnf package manager (fedora) on debian, as this tool allows to download and install rpm packages in an specified target dir.

Is there an repository , how can i get "dnf installed on a debian/jessie?

something like this would be great

apt-get install dnf

rpm and python3 are already installed. so i just need "dnf"

Best Answer

"yum" (predecessor to dnf) exists as package on debian.

apt-get install yum

As yum is to 95% compatible with "dnf" I could achieve what i originally wanted without "dnf", which I still would prefer, to avoid future problems.

Related Question