Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I get the list of all the versions of a package?

Tags:

I would like to get the list of versions of a package. What is the command line for this?

It would be also nice to search in versions, for example: all the versions that are higher or lower than a specific version.

like image 592
Boris Modylevsky Avatar asked Nov 03 '14 07:11

Boris Modylevsky


People also ask

How do you list all yum installed packages?

To count all installed packages run: sudo yum list installed | wc -l.

How do I check yum version?

You can find the version number of a package in your repositories with the yum info command. # yum info rabbitmq-server Available Packages Name : rabbitmq-server Arch : noarch Version : 2.6.


1 Answers

You just need to add the --all to the end of your request. You can also add -v for verbose output.

Choco list packagename --all

like image 164
ferventcoder Avatar answered Oct 12 '22 06:10

ferventcoder