How do I get details about a package which isn't installed?

How can I get some details about a package without installing it, (eg. the description and version number) like in Synaptic or Aptitude. The command

dpkg -s PACKAGE

does not work, with this error. It works for installed packages, though

dpkg-query: package 'PACKAGE' is not installed and no information is available
1

3 Answers

For packages that are in your repositories you can use:

dpkg --print-avail PACKAGE_NAME

or

apt-cache show PACKAGE_NAME

or

aptitude show PACKAGE_NAME

or

apt show PACKAGE_NAME
1

The apt-cache show command can be used, instead of dpkg -s. Like this:

apt-cache show PACKAGE

(source)

apt show

Or for more details

apt show -a

This will show only the description:

LANG=C apt show -a "$PKGNAME"|grep Description: -A99

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like