I've been trying to install .deb chrome file (google-chrome-stable_current_amd.64.deb
). It is saved in my Downloads, so I tried this command
sudo apt-get install ~/Downloads/google-chrome-stable_current_amd.64.deb
After reading the package list it responds:
E: Unsupported file /home/stockton/Downloads/google-chrome-stable_current_amd.64.deb given on command line
I don't know why it says E: file
, I though Linux drives and files are not named after letters like Windows drives, for example 'C:' but idk I can still be wrong. I did have Windows 10 before I booted Ubuntu.
Any help will be great.
/home/stockton
) and runsudo dpkg -i google-chrome* && sudo apt install -f
– Pilot6 Sep 17 '17 at 22:51E:
is not related to Windows drive letters - it simply denotes an Error condition – steeldriver Sep 17 '17 at 23:02apt-get
can't install .deb files. – Soren A Sep 18 '17 at 09:20amd.64.deb
, it isamd64.deb
. – Pilot6 Sep 18 '17 at 10:11dpkg
notapt
– ravery Sep 20 '17 at 14:41sudo apt install -f
– Pilot6 Sep 20 '17 at 15:08apt
is able to install .deb files directly and pull the dependencies. – juzzlin May 20 '20 at 12:16chmod 777 google-chrome-stable_current_amd.64.deb
on your downloaded file. And then you can install it normally. – Hackinet Aug 12 '21 at 14:47