我尝试使用终端在 ubuntu 22.10 上安装 google-chrome,但出现以下错误

我尝试使用终端在 ubuntu 22.10 上安装 google-chrome,但出现以下错误

通过运行此命令wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.db

我得到了这个错误

HTTP request sent, awaiting response... 404 Not Found
2023-06-18 17:58:59 ERROR 404: Not Found.```

答案1

您拼错了 DEB 包扩展名,它是 URL 的一部分,而它应该是..._amd64.deb而不是,..._amd64.db这导致 URL 不正确并指向不存在的 URI,因此出现错误:

ERROR 404: Not Found.

因此,使用以下命令下载:

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

然后,使用以下命令安装它:

sudo apt install ./google-chrome-stable_current_amd64.deb

相关内容