zoukankan      html  css  js  c++  java
  • Ubuntu如何安装谷歌Chrome浏览器

    这里提供一个Ubuntu安装谷歌浏览器的简单方法。

    1. 下载谷歌浏览器安装包

    wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
    

    2. 安装谷歌浏览器

    dpkg -i google-chrome-stable_current_amd64.deb
    

    “正常情况”这时候会报错,据说跟谷歌浏览器不是开源软件有关,用sudo apt-get install -f修复一下,再dpkg -i google-chrome-stable_current_amd64.deb,就可以了。

    1. Download Chrome

    wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
    

    dpkg -i google-chrome-stable_current_amd64.deb

    
    #### 2. Install Chrome
    

    dpkg -i google-chrome-stable_current_amd64.deb

    However, it _DID NOT_ work! It says:
    

    Errors were encountered while processing:
    google-chrome-stable

    
    This issue was caused by missing depandancies. So it can be solved via:
    

    sudo apt-get install -f

    After that re-run:
    

    dpkg -i google-chrome-stable_current_amd64.deb

    
    Now it works!
  • 相关阅读:
    一些前台技巧
    javascript中的面向对象
    vs.net 常用快捷键
    js和C#中的进制转换方法
    MFC中CDC相关图形,文本的一些使用方法(转)
    poj1505
    poj1401
    poj2533
    poj1504
    poj1384
  • 原文地址:https://www.cnblogs.com/yaos/p/14014400.html
Copyright © 2011-2022 走看看