Want to use Google Chrome on your Kali Linux system? Kali Linux is a special operating system made for security testers and hackers, and it comes with Firefox as its default browser. But if you prefer Chrome for its speed, features, or just because you’re used to it, you can add it easily! Since Chrome isn’t included in Kali’s usual software list, you’ll need to install it yourself with a few simple steps.
In this blog, we’ll show you how to install Google Chrome on Kali Linux in an easy, beginner-friendly way. We’ll use the terminal to download and set it up, so you’ll have Chrome ready to use in no time. Whether you’re browsing the web or working on security tasks, this guide will get you started.

Steps to Install Google Chrome on Kali Linux
The installations of Chrome on Kali Linux are complete in 5 steps and in the below section, we have listed down all the 5 steps. So keep scrolling the article to know how to install Google Chrome on Kali.
Step 1: Update Your System
Before installing new software, it’s essential to update your package list to ensure that your system is running the latest available versions of all installed packages. This will also help prevent potential issues during installation.
- Open your Terminal.
- Run the following command:
sudo apt update && sudo apt upgradeEnter your password when prompted and allow the system to complete the update process.


Step 2: Install Dependencies
Google Chrome relies on certain tools for downloading and managing packages. Install these dependencies using the following command:
sudo apt install wget ca-certificates curlStep 3: Download Google Chrome
Google Chrome is not available in Kali Linux's default repositories. Instead, you'll need to download the .deb package directly from Google's official website.
Use wget in the terminal to download the latest stable .deb package of Google Chrome:
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb(Note: Check the URL if needed, as it may update in the future)

Step 3: Install Google Chrome
Once the download is complete, use the dpkg (Debian package manager) to install Google Chrome.
- Navigate to the folder where the
.debfile was downloaded (usually the Downloads folder):
cd ~/Downloads- Install Google Chrome using
aptto handle dependencies:
sudo apt install ./google-chrome-stable_current_amd64.deb
Troubleshooting Dependecy Error (Optional)
If you encounter dependency issues, run the following command to resolve them:
sudo apt install -fThis will install any missing dependencies and complete the installation


Step 4: Launch Google Chrome
After installation, you can launch Google Chrome either through the terminal or the application menu.
From the terminal use the following command:
google-chrome
From the application menu:
- Click on the applications menu in your taskbar and search for "Google Chrome."
- Click on the icon to launch Chrome
Step 5: Set Google Chrome as the Default Browser (Optional)
To set Google Chrome as your default browser on Kali Linux:
- Open Google Chrome.
- In the top-right corner, click the three vertical dots (menu) and select Settings.
- Scroll down to the Default browser section and click Make default.
Troubleshooting Google Chrome Installation on Kali Linux
Unmet Dependencies
If you encounter any dependency errors during installation (such as missing libraries like libu2f-udev), try running the following to resolve them:
sudo apt install libu2f-udev
sudo apt --fix-broken install
Running Google Chrome with --no-sandbox (Only use this as a last resort)
If you encounter issues with running Chrome, you may need to disable the sandbox (though this is not recommended for regular use due to security risks). Run:
google-chrome --no-sandboxConclusion
Installing Google Chrome on Kali Linux is easy using the .deb package or via Flatpak. Once installed, Chrome will provide access to the full suite of browser extensions and offer a fast, secure browsing experience, which is essential for many users working in Kali Linux for penetration testing and other tasks.