I am trying to install chrome browser via command line. I tried this:
$ apt-cache search chrome browser
The results show that the proper term is "chrome-browser," so I tried that:
$ sudo apt-get install chrome-browser
And then "Y" for the Y/n question.
But the installation threw errors. Does someone see anything wrong with the commands I issued?
uname -i
gave mex86_64
but it would seem I needed it to outputamd64
instead. – altendky Aug 21 '13 at 00:07libxss1
for? Is this still a requirement? – king_julien Oct 30 '13 at 11:08gdebi-gtk
instead ofsudo dpkg -i google-chrome*.deb
more convenient. Basically one has to run,gksudo gdebi-gtk
, followed by opening the deb file from the menu and the selecting Install Package. – nlern Jul 31 '16 at 17:32wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
and thensudo apt-get install ./google-chrome-stable_current_amd64.deb
- that handles everything including dependencies. – tobii Jul 10 '18 at 19:09