Uninstall and Reinstall Brave Browser on Ubuntu
This guide explains how to completely uninstall and then reinstall the Brave browser on Ubuntu using the command line.
🧹 Step 1: Uninstall Brave
Open the Terminal by pressing Ctrl + Alt + T or searching for “Terminal” in your applications.
If installed with apt
Run the following commands:
1. Remove the Brave browser package:
sudo apt remove brave-browser brave-keyring2. Delete any leftover configuration files:
sudo apt purge brave-browser3. Remove the Brave repository file:
sudo rm /etc/apt/sources.list.d/brave-browser-release.list4. Update your package list:
sudo apt update5. (Optional) Remove local configuration and cache files:
rm -rf ~/.config/BraveSoftware
rm -rf ~/.cache/BraveSoftwareIf installed as a Snap package
Run this command:
sudo snap remove brave🔁 Step 2: Reinstall Brave
After uninstalling, you can reinstall Brave using one of the following methods.
✅ Recommended: Install via Brave Repository
Installing via the official Brave repository is recommended for the best performance and stability.
1. Install dependencies:
sudo apt install curl2. Import Brave’s GPG key:
sudo curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg \
https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg3. Add the Brave repository:
echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg] \
https://brave-browser-apt-release.s3.brave.com/ stable main" | \
sudo tee /etc/apt/sources.list.d/brave-browser-release.list4. Update package list:
sudo apt update5. Install Brave Browser:
sudo apt install brave-browser🧩 Alternative: Install via Snap Store
If you prefer Snap (simpler but less flexible), run:
sudo snap install braveℹ️ Notes
- Using the APT repository ensures you receive the latest updates directly from Brave.
- If you face issues, check official docs: 🔗 Brave Help Center (opens in a new tab) 🔗 Ask Ubuntu Brave Removal Guide (opens in a new tab)
💬 References
- Brave Help Center: How do I uninstall Brave? (Jul 25, 2023) (opens in a new tab)
- Ask Ubuntu: How do I remove Brave completely? (Mar 14, 2020) (opens in a new tab)
- Reddit: Need to uninstall Brave Web browser (Sept 2024) (opens in a new tab)
- Brave Official Linux Installation Guide (opens in a new tab)
- YouTube: Installing Brave on Ubuntu (Jul 29, 2023) (opens in a new tab)
Author: vatu S Platform: Ubuntu Linux Last Updated: October 2025