Say, I have foo-1.2.3.deb
which depends on perl
and python
, however, running command:
dpkg -i ./foo-1.2.3.deb
won't install these dependencies. So I must apt-get install perl python
by hand.
How to make dpkg -i
install these dependencies for me automatically?
Best Answer
After using
dpkg
, running the following command helped me to install the required dependencies:In all, your terminal should look like this:
Notice the line about
Setting up package_with_unsatisfied_dependencies
. This fixes (and completes) the installation ofpackage_with_unsatisfied_dependencies.deb
.