ubuntu安装chrome

    xiaoxiao2022-07-12  177

    又在网上搜索,下面方法可行:

    复制代码 代码如下:

    Download google chrome for ubuntu from terminal with the following command: For the 32-bit version of Google Chrome, use this command below. wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb For the 64-bit version of Google Chrome, use this command below wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb Once downloaded, install google chrome with following command: 32 bit :

    复制代码 代码如下:

    sudo dpkg -i google-chrome-stable_current_i386.deb 64 bit :

    复制代码 代码如下:

    sudo dpkg -i google-chrome-stable_current_amd64.deb 如果出错,是依赖库的问题,用命令修复库的依赖。 代码:

    复制代码 代码如下:

    sudo apt-get -f install

    最新回复(0)