How to let `dpkg -i` install dependencies for me? - Ask Ubuntu
After using dpkg
, running the following command helped me to install the required dependencies:
sudo apt-get -f install
In all, your terminal should look like this:
$ sudo dpkg -i package_with_unsatisfied_dependencies.deb dpkg: dependency problems prevent ... [additional messages] $ sudo apt-get -f install [apt messages] Setting up [dependency]... Setting up package_with_unsatisfied_dependencies...
Notice the line about Setting up package_with_unsatisfied_dependencies
. This fixes (and completes) the installation of package_with_unsatisfied_dependencies.deb
.
Read full article from How to let `dpkg -i` install dependencies for me? - Ask Ubuntu
No comments:
Post a Comment