Home > Software design >  Unable to install google chrome on Ubuntu
Unable to install google chrome on Ubuntu

Time:09-22

I've been trying to install .deb chrome file (google-chrome-stable_current_amd.64.deb) but unable to do. I only get the message saying that "It is not installable" and "Some packages could not be installed".

logs:

sudo apt install ./google-chrome-stable_current_amd.64.deb
Reading package lists... Done
Unsupported file ./google-chrome-stable_current_amd.64.deb given on commandline

Note, selecting 'google-chrome-stable:amd64' instead of './google-chrome-stable_current_amd64.deb'
Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming.

google-chrome-stable:amd64 : Depends: libasound2:amd64 (>= 1.0.16) but it is not installable                                                                         
                          Depends: libatk-bridge2.0-0:amd64 (>= 2.5.3) but it is not installable 
Recommends:: command not found
ubuntu@ip-:~$ E: Unable to correct problems, you have held broken packages.
E:: command not found



                                                                     

CodePudding user response:

To install the package use command like:

sudo apt install ./google-chrome-stable_current_amd.64.deb

This will install also dependencies.

CodePudding user response:

Try this method worked for me

Navigate to the folder were google-chrome-stable_current_amd64.deb is present

Example: cd/Downloads/

Run this code sudo dpkg -i google-chrome-stable_current_amd64.deb

If you encounter any problem run sudo apt install -f

And re run the below code

sudo dpkg -i ~/Downloads/google-chrome-stable_current_amd64.deb

By running the above code Google-chrome will be installed.

  • Related