Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Package 'chromium-browser' has no installation candidate

I am trying to install the chrome browser in a docker image with

RUN apt-get install chromium-browser 

but I get the error:

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 

How to correctly install chromium in a docker image?

like image 719
Alex Avatar asked Nov 09 '17 14:11

Alex


People also ask

Can I install both Chrome and Chromium?

Yes. Thak you, I install both of them and do not have any problem.


Video Answer


2 Answers

I solved it as follows:

# 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 
like image 101
Alex Avatar answered Sep 20 '22 23:09

Alex


If you happen to be running a Debian-based image, the package you want is chromium (vs chromium-browser). So, for such images, this'll take care of it for you:

RUN apt-get install chromium -y 
like image 28
verespej Avatar answered Sep 21 '22 23:09

verespej