linux – How do I get a list of files included in a package installed with yum?

Question: Question:

It seems that the python34 package is installed, but I don't know where the binaries are.

Even if you look at the command list with yum help , there is no such command, and even if you look at the package information with yum info python34 -v , the file list does not appear.

How can I get a list of the files contained in a package installed with yum?

Answer: Answer:

What about the repoquery command?

sudo yum install yum-utils
repoquery --list python34

How to display a list of files installed by yum repoquery –list

Scroll to Top