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.debReading package lists... DoneUnsupported 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 haverequested an impossible situation or if you are using the unstabledistribution that some required packages have not yet been createdor 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 foundubuntu@ip-:~$ E: Unable to correct problems, you have held broken packages.E:: command not found
2

Best Answer


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.

To install the package use command like:

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

This will install also dependencies.