6

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

David Nehme
  • 1,756
  • 4
  • 14
  • 13

2 Answers2

7

You want to run:

$ dpkg --info <blah>.deb
womble
  • 95,029
  • 29
  • 173
  • 228
3

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

$ dpkg -p <package_name>
EEAA
  • 108,414
  • 18
  • 172
  • 242