chrome 安裝淚史

weixin_33724059發表於2017-07-22

安裝過程簡直是狀況百出,解決是需要耐心的,還有時間 >_<

  • 基本安裝流程

  • 狀況:
    在安裝到第5步時,出現如下錯誤:

    1.  You might want to run 'apt-get -f install' to correct these:
       The following packages have unmet dependencies:
       kate : Depends: kdelibs4c2a (>= 4:3.5.9) but it is not going to be installed
       Depends: libqt3-mt (>= 3:3.3.8b) but it is not going to be installed
       Recommends: kregexpeditor but it is not installable
       kscope : Depends: kdelibs4c2a (>= 4:3.5.7-1) but it is not going to be installed
       Depends: libaudio2 but it is not going to be installed
       Depends: libqt3-mt (>= 3:3.3.8really3.3.7) but it is not going to be installed
       Depends: cscope but it is not going to be installed
       Depends: exuberant-ctags but it is not going to be installed
       Depends: graphviz but it is not going to be installed
       E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
      

    解決:刪除提示的kate和kscope兩個未完全安裝的軟體。

        $sudo dpkg --purge kate
        $sudo dpkg --purge kscope
    
    1. You might want to run 'apt-get -f install' to correct these:
      The following packages have unmet dependencies:
               google-chrome-stable : Depends: libappindicator1 but it is not going to be installed
      E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
      

      解決:使用如下命令修復安裝包

       $ sudo apt-get --fix-broken install
      

解決後,然後再次進行第5步,繼續完成安裝,就ok了

相關文章