I'd like to find out which packages
sudo apt-get build-dep <package>
would install (if I already got some dependencies installed, I'd also like to see those → so running or simulating the above is not enough). Command line preferred.
I'd like to find out which packages
sudo apt-get build-dep <package>
would install (if I already got some dependencies installed, I'd also like to see those → so running or simulating the above is not enough). Command line preferred.
For a full list of dependencies, including the dependencies' dependencies, you can use:
The command may remind you to install
apt-rdepends
first.You can use the following command to only show the ones that are not installed:
See
apt-rdepends --help
for all the options.Note: This will generate a massive list.
apt-rdepends -b xterm
, for example, generates 8773 lines of output, and takes it's time doing it.If you only want to see the packages that are required to build the topmost package, i.e. what do I need to install to build nautilus, run:
This is roughly equivalent to Carsten Thiel's answer (
The following NEW packages will be installed
), but the output format is a bit nicer. It also only shows the topmost package, whereas simulated apt-get also shows packages installed as dependencies of those.This also shows packages that are installed. But it may also show packages that are installed by default. Unfortunately, neither method is much help when you're trying to clean up your system after running apt-get build-dep. As far as I know, there isn't a reliable method of finding which ones were installed except from looking at the apt log file at
/var/log/apt/history.log
.showsrc
displays the debian/control file for a given source package. We then grep for the line(s) which begin with 'Build-Depends' which has the list of packages needed to build from source.The option
-s
(--simulate
) will output everything that would be done without doing anything. You don't even need root privileges for that.