终端 say 的软件包google-chrome-stable
需要重新安装,但在档案中找不到它。我需要做什么?我一直收到错误。
答案1
这东西有相同或几乎相同的程序。
运行更新
sudo apt-get update
下载 Debian 文件
wget -c https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
使用 dpkg 管理器安装文件。
sudo dpkg -i google-chrome-stable_current_i386.deb sudo apt-get -f install
这应该已经解决了在 Ubuntu 上安装 Google Chrome 所需的所有问题。
答案2
要卸载以前安装的一个:
sudo apt-get remove google-chrome-stable
对于 32 位操作系统:
cd /tmp && wget -c https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
sudo dpkg -i google-chrome-stable_current_i386.deb
sudo apt-get -f install
对于 x64 操作系统:
cd /tmp && wget -c https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
sudo apt-get -f install
答案3
请尝试以下;
打开终端(按CTRL+ ALT+ T)并输入以下 wget 命令来获取 .deb 文件:
适用于 32 位
获得https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
或者如果您已经下载了 deb 文件,请使用 & 导航到目录cd
并输入以下命令;
sudo dpkg -i google-chrome-stable_current_i386.deb
屏幕上将显示错误。要修复它,请运行以下命令;
sudo apt-get -f 安装