6

Given just a .deb file, how do I get the list of dependencies?

David Nehme
  • 2,016
  • 4
  • 16
  • 13

2 Answers2

7

You want to run:

$ dpkg --info <blah>.deb
womble
  • 96,255
  • 29
  • 175
  • 230
3

This should (among other things) list the "depends" section of the package description.

$ dpkg -p <package_name>
EEAA
  • 109,363
  • 18
  • 175
  • 245