gpt4 book ai didi

google-chrome - 安装特定版本的 google-chrome-unstable

转载 作者:行者123 更新时间:2023-12-04 16:30:14 25 4
gpt4 key购买 nike

我在 Dockerfile 中使用以下内容来安装 google-chrome(基于 this):

RUN apt-get update && apt-get install -y wget --no-install-recommends \
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
&& apt-get update \
&& apt-get install -y google-chrome-unstable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst ttf-freefont \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& apt-get purge --auto-remove -y curl \
&& rm -rf /src/*.deb

但是,我想安装一个特定版本,而不是只安装最新版本。这可能吗?我尝试了以下方法:

RUN apt-get update && apt-get install -y wget --no-install-recommends \
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
&& apt-get update \
&& apt-get install -y google-chrome-unstable=66.0.3346.8-1 fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst ttf-freefont \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& apt-get purge --auto-remove -y curl \
&& rm -rf /src/*.deb

唯一的区别是添加明确的版本号=66.0.3346.8-1

但我明白了:

E: Version '66.0.3346.8-1' for 'google-chrome-unstable' was not found

使用与最新版本对应的明确版本号有效,所以我怀疑旧版本根本无法通过此来源获得?

最佳答案

apt-get update
apt-get install wget
wget http://dl.google.com/linux/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_73.0.3679.0-1_amd64.deb
apt-get install -f ./google-chrome-unstable_73.0.3679.0-1_amd64.deb

您可以在此处找到版本号 https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-unstable

关于google-chrome - 安装特定版本的 google-chrome-unstable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49070206/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com