
- by x32x01 ||
If you’re a Kali Linux user and want the Google Chrome browser, you’re in the right place! Chrome is one of the fastest and most secure browsers for Linux, macOS, Windows, and Android. In this guide, you’ll learn how to install it step-by-step.
Step 1: Download the Google Chrome .deb Package
First, update your system and install wget:
Then, download the Google Chrome Debian package:
Step 2: Install Google Chrome Browser on Kali Linux
Once the file is downloaded, install it with:
During the installation, dependencies like libappindicator3-1 may be installed automatically. You’ll also notice that a new Google Chrome repository entry is added at:
This ensures Chrome can be updated easily through APT.
Step 3: Launch Google Chrome on Kali Linux
After installation, launch Chrome using the terminal:
Or simply search “Google Chrome” in your GUI application launcher.
You’ll see the Welcome screen - log in to your Google account and start browsing!
Step 4: Update Google Chrome on Kali Linux
Since the APT repository was added automatically, keeping Chrome up to date is simple:
Chrome will now receive automatic updates with your regular system upgrades.
You’ve successfully installed Google Chrome on Kali Linux!
Enjoy fast, secure, and smooth web browsing.

Why Chrome Isn’t in Kali Repositories
Google Chrome is not open-source like Chromium, so it’s not included in most Linux repositories. Instead, you’ll download it directly from Google’s official source or use the APT repository provided by Google.Step 1: Download the Google Chrome .deb Package
First, update your system and install wget: Code:
sudo apt update
sudo apt -y install wget
Then, download the Google Chrome Debian package:
Code:
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
Step 2: Install Google Chrome Browser on Kali Linux
Once the file is downloaded, install it with: Code:
sudo apt install ./google-chrome-stable_current_amd64.deb
During the installation, dependencies like libappindicator3-1 may be installed automatically. You’ll also notice that a new Google Chrome repository entry is added at:
Code:
/etc/apt/sources.list.d/google-chrome.list
Step 3: Launch Google Chrome on Kali Linux
After installation, launch Chrome using the terminal: Code:
google-chrome-stable
You’ll see the Welcome screen - log in to your Google account and start browsing!
Step 4: Update Google Chrome on Kali Linux
Since the APT repository was added automatically, keeping Chrome up to date is simple: Code:
sudo apt update
sudo apt upgrade
Final Thoughts
You’ve successfully installed Google Chrome on Kali Linux!Enjoy fast, secure, and smooth web browsing.


Last edited: