我正在尝试安装 Google Chrome,为此我下载了 google-chrome-stable_current_i386.deb 文件。
当我尝试install
在终端中使用安装时
sudo install google-chrome-stable_current_i386.deb
它出现以下错误。
install: missing destination file operand after ‘google-chrome-stable_current_i386.deb’ Try 'install --help' for more information.
答案1
您可以按照前面的答案使用终端进行安装,
sudo dpkg -i google-chrome-stable_current_i386.deb
否则,你可以双击下载的 .deb 文件将于Ubuntu 软件中心(如果你使用的是 Ubuntu)。然后你可以点击安装按钮。
答案2
您可以使用以下命令安装它dpkg
:
sudo dpkg -i google-chrome-stable_current_i386.deb
查看dpkg --help
更多信息。