包 'chromium-browser' 没有安装候选项
Package 'chromium-browser' has no installation candidate
我正在尝试将 chrome
浏览器安装到带有
的 docker
图像中
RUN apt-get install chromium-browser
但我收到错误消息:
Package chromium-browser is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'chromium-browser' has no installation candidate
如何在 docker
映像中正确安装 chromium
?
我是这样解决的:
# install manually all the missing libraries
RUN apt-get install -y gconf-service libasound2 libatk1.0-0 libcairo2 libcups2 libfontconfig1 libgdk-pixbuf2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libxss1 fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils
# install chrome
RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
RUN dpkg -i google-chrome-stable_current_amd64.deb; apt-get -fy install
使用以下命令在 docker 容器中安装 chrome:
RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
RUN dpkg -i google-chrome-stable_current_amd64.deb --fix-missing; apt-get -fy install`
如果您恰好是 运行 基于 Debian 的映像,则您需要的软件包是 chromium
(对比 chromium-browser
)。因此,对于此类图像,这将为您解决:
RUN apt-get install chromium -y
我正在尝试将 chrome
浏览器安装到带有
docker
图像中
RUN apt-get install chromium-browser
但我收到错误消息:
Package chromium-browser is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'chromium-browser' has no installation candidate
如何在 docker
映像中正确安装 chromium
?
我是这样解决的:
# install manually all the missing libraries
RUN apt-get install -y gconf-service libasound2 libatk1.0-0 libcairo2 libcups2 libfontconfig1 libgdk-pixbuf2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libxss1 fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils
# install chrome
RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
RUN dpkg -i google-chrome-stable_current_amd64.deb; apt-get -fy install
使用以下命令在 docker 容器中安装 chrome:
RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
RUN dpkg -i google-chrome-stable_current_amd64.deb --fix-missing; apt-get -fy install`
如果您恰好是 运行 基于 Debian 的映像,则您需要的软件包是 chromium
(对比 chromium-browser
)。因此,对于此类图像,这将为您解决:
RUN apt-get install chromium -y