Debian系统Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution)

错误报警示例(摘自https://askubuntu.com/questions/914428/unmet-dependencies-when-trying-to-install-r-base/921232):

ratanak@ratanak-walker:~$ sudo apt-get install httrack
Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
 httrack : Depends: libhttrack2 (>= 3.48.24) but it is not going to be installed
 rstudio : Depends: libjpeg62 but it is not going to be installed
           Depends: libgstreamer0.10-0 but it is not installable
           Depends: libgstreamer-plugins-base0.10-0 but it is not installable
           Recommends: r-base (>= 2.11.1) but it is not going to be installed
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).

ratanak@ratanak-walker:~$ sudo apt-get install r-base
Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
 r-base : Depends: r-base-core (>= 3.4.0-1xenial0) but it is not going to be installed
          Depends: r-recommended (= 3.4.0-1xenial0) but it is not going to be installed
          Recommends: r-base-html but it is not going to be installed
          Recommends: r-doc-html but it is not going to be installed
 rstudio : Depends: libjpeg62 but it is not going to be installed
           Depends: libgstreamer0.10-0 but it is not installable
           Depends: libgstreamer-plugins-base0.10-0 but it is not installable
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
解决方法:
apt --fix-broken install
apt-get update
apt-get upgrade



你可能感兴趣的:(Linux系统环境)