我尝试在终端中执行此操作sudo apt-get install google chrome
,但包不存在,请帮忙
答案1
我认为您没有将 google-chrome 存储库添加到 Ubuntu。打开您的终端,然后输入:
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
然后添加存储库,输入以下命令:
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
更新系统后,在终端中输入以下内容:
sudo apt update
最后,要安装 Google Chrome,请输入以下命令:
sudo apt install google-chrome-**<version>**
版本测试版或者稳定的或者发布
例如 :
sudo apt install google-chrome-stable
我更喜欢使用稳定的版本。