Want to install latest Google Chrome browser on Debian 10? Then this tutorial will help you on how to.
Install Latest Google Chrome Browser on Debian 10
There are two ways in which you can install latest Google chrome browser on Debian 10;
- Install latest google chrome browser on Debian 10 from Chrome repos
- Install latest google chrome browser on Debian 10 using DEB binary
Install latest google chrome browser on Debian 10 from Chrome repos
Google chrome is not available on the default Debian 10 repos. In that case, Google Chrome browser can be installed through the Google Chrome PPA repositories.
Install the repository signing key.
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
Next, install the Google Chrome PPA repos on Debian 10.
echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google.list
Update package cache.
apt update
Then install latest Google Chrome browser on Debian 10;
apt install google-chrome-stable
The latest Google Chrome browser, as of this writing, has been installed on Debian 10.
To check the version of installed Google chrome browser;
google-chrome --version
Google Chrome 90.0.4430.212
google-chrome-stable --version
Google Chrome 90.0.4430.212
Install Google Chrome using DEB Binary Package
Download Google Chrome DEB binary package from Google Chrome page.
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -P /tmp
Then install it using APT so as to deal with required dependencies automatically.
apt install /tmp/google-chrome-stable_current_amd64.deb
Running Google Chrome Browser on Debian 10
You can now launch Google Chrome browser from Debian 10 applications.
You can as well launch Google chrome browser from your terminal by running either of the commands below;
google-chrome
or
google-chrome-stable
You can check Chrome man pages for command line options you can use;
man google-chrome
man google-chrome-stable

And there you go!!
That marks the end of this tutorial on how to install latest Google Chrome Browser on Debian 10.
Other Tutorials;
Install and Setup Chrome Remote Desktop on Ubuntu 20.04
Install Google Chrome Browser on Ubuntu 20.04
Install Google Chrome Browser on CentOS 8