我正在尝试使用以下命令安装 chrome:
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
sh -c 'echo "deb [arch=$(dpkg --print-architecture)] https://dl-ssl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
apt update && apt install -y google-chrome-stable --no-install-recommends
Run Code Online (Sandbox Code Playgroud)
我收到以下错误:
Get:4 https://dl-ssl.google.com/linux/chrome/deb stable InRelease [1811 B]
Fetched 1811 B in 0s (4467 B/s)
Reading package lists...
Building dependency tree...
Reading state information...
All packages are up to date.
Reading package lists...
Building dependency tree...
Reading state information...
E: Unable to locate package google-chrome-stable
Run Code Online (Sandbox Code Playgroud)
有人知道为什么这对我不起作用吗?难道是 Google chrome 软件包不适用于我的系统:
root@xxx:/# dpkg …
Run Code Online (Sandbox Code Playgroud)