View source or verify the signature
Release Channel Beta Channel Nightly Channel
System Requirements: 64-bit Linux distribution with glibc 2.28 or later
Signing Keys: All packages are signed with our GPG key. You can verify the signatures using our public key.
Release Channel
The stable release channel is recommended for most users. It receives regular updates with bug fixes and security patches.
Debian/Ubuntu
sudo apt install curl
sudo curl -fsSLo /usr/share/keyrings/ibrowe-browser-archive-keyring.gpg https://dl.ibrowe.com/apt/ibrowe-browser-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/ibrowe-browser-archive-keyring.gpg] https://dl.ibrowe.com/apt/ stable main" | sudo tee /etc/apt/sources.list.d/ibrowe-browser-release.list
sudo apt update
sudo apt install ibrowe-browser
Fedora
sudo dnf install dnf-plugins-core
sudo dnf config-manager --add-repo https://dl.ibrowe.com/rpm/ibrowe-browser.repo
sudo dnf install ibrowe-browser
openSUSE
sudo zypper addrepo https://dl.ibrowe.com/rpm/ibrowe-browser.repo
sudo zypper install ibrowe-browser
Arch Linux
Using an AUR helper like yay:
yay -S ibrowe-browser
Flatpak
Flatpak is a universal package format that works on any Linux distribution. It provides a sandboxed environment for applications.
flatpak install flathub com.ibrowe.Browser
Snap
Snap is a universal package format that works on any Linux distribution. It provides automatic updates and rollback capabilities.
sudo snap install ibrowe-browser
Beta Channel
The beta channel is for users who want to test new features before they are released to the stable channel. It may contain bugs and is not recommended for production use.
Debian/Ubuntu
sudo apt install curl
sudo curl -fsSLo /usr/share/keyrings/ibrowe-browser-beta-archive-keyring.gpg https://dl.ibrowe.com/apt/ibrowe-browser-beta-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/ibrowe-browser-beta-archive-keyring.gpg] https://dl.ibrowe.com/apt/ beta main" | sudo tee /etc/apt/sources.list.d/ibrowe-browser-beta.list
sudo apt update
sudo apt install ibrowe-browser-beta
Fedora
sudo dnf install dnf-plugins-core
sudo dnf config-manager --add-repo https://dl.ibrowe.com/rpm/ibrowe-browser-beta.repo
sudo dnf install ibrowe-browser-beta
openSUSE
sudo zypper addrepo https://dl.ibrowe.com/rpm/ibrowe-browser-beta.repo
sudo zypper install ibrowe-browser-beta
Arch Linux
yay -S ibrowe-browser-beta
Nightly Channel
The nightly channel contains the latest development builds. It is updated daily and may be unstable. Only use this if you want to test the latest features and don't mind potential issues.
Debian/Ubuntu
sudo apt install curl
sudo curl -fsSLo /usr/share/keyrings/ibrowe-browser-nightly-archive-keyring.gpg https://dl.ibrowe.com/apt/ibrowe-browser-nightly-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/ibrowe-browser-nightly-archive-keyring.gpg] https://dl.ibrowe.com/apt/ nightly main" | sudo tee /etc/apt/sources.list.d/ibrowe-browser-nightly.list
sudo apt update
sudo apt install ibrowe-browser-nightly
Fedora
sudo dnf install dnf-plugins-core
sudo dnf config-manager --add-repo https://dl.ibrowe.com/rpm/ibrowe-browser-nightly.repo
sudo dnf install ibrowe-browser-nightly
openSUSE
sudo zypper addrepo https://dl.ibrowe.com/rpm/ibrowe-browser-nightly.repo
sudo zypper install ibrowe-browser-nightly
Arch Linux
yay -S ibrowe-browser-nightly
GitHub Releases
You can download the latest release directly from our GitHub repository. This is useful if you want to install iBrowe on an unsupported distribution.
# Download the latest release from GitHub
# https://github.com/ibrowe/browser/releases
Community-Maintained Packages
These distributions are not officially supported by iBrowe, but community members maintain packages for them. While we don't provide direct support, these packages are generally well-maintained and reliable.
Manjaro Linux
sudo pacman -S ibrowe-browser
Solus Linux
sudo eopkg install ibrowe-browser
Common Issues and Solutions
If you encounter any issues during installation or while using iBrowe, try these solutions:
# Update your system first
sudo apt update && sudo apt upgrade # For Debian/Ubuntu
sudo dnf update # For Fedora
sudo zypper update # For openSUSE
sudo pacman -Syu # For Arch Linux
# If the package manager reports errors, try:
sudo apt clean && sudo apt update # For Debian/Ubuntu
sudo dnf clean all && sudo dnf update # For Fedora
sudo zypper clean && sudo zypper update # For openSUSE
sudo pacman -Scc && sudo pacman -Syu # For Arch Linux