What are the best tools for resolving unmet dependencies when compiling from source? I read about 'apt-file' and 'checkinstall' from ubuntu documentation however i just can't seem to install these two(2) packages in the terminal with sudo apt-get install command or through synaptic package manager or software centre. Thanks in advance
Asked
Active
Viewed 496 times
1 Answers
3
sudo apt-get build-dep (package)
That should install all the packages needed to build something. You may also need to install build-essentials

user1974
- 765
-
Already installed build essentials but still can't those two packages. I'll try the build-dep later and report – Mysterio Apr 05 '11 at 05:10
apt-cache policy (package)
useful. It tells you whether the package is installable. – user1974 Apr 06 '11 at 01:49