Now that Ubuntu 19.10 Eoan is released (10/17/19), the install script is no longer correct due to a missing PPA for the new release name.
I have been using the 19.04 Disco PPA successfully to this point, so an option would be to update the script to use disco for now till an eaon verison is ready.
sudo apt install brave-browser{-beta,-nightly}E: Failed to fetch https://brave-browser-apt-beta.s3.brave.com/dists/eoan/InRelease 403 Forbidden [IP: 151.101.50.217 443]
A successful installation of the browser.
100% of the time
All repos: stable, beta, dev
We're currently working (brave/devops#464) on deprecating these distro names entirely and replacing them with a single stable release name, which means that this will no longer need to be updated whenever a new distro version is released.
All of these distro names are actually pointing to the same exact packages today (i.e. there is a single .deb for all versions of Debian-based distros).
Just for the record, I believe https://github.com/brave/brave-browser/releases/download/v0.70.118/brave-browser_0.70.118_amd64.deb is the latest stable .deb file for installing brave browser.
@kbsali That is on latest on Nightly channel. Release channel latest version is 0.69.135. GitHub shows the most recent build (irrespective of channel) as the latest build.
For anybody looking to install Brave on Ubuntu 19.10, follow these instructions:
sudo apt install apt-transport-https curl
curl -s https://brave-browser-apt-release.s3.brave.com/brave-core.asc | sudo apt-key --keyring /etc/apt/trusted.gpg.d/brave-browser-release.gpg add -
echo "deb [arch=amd64] https://brave-browser-apt-release.s3.brave.com/ bionic main" | sudo tee /etc/apt/sources.list.d/brave-browser-release-bionic.list
sudo apt update
sudo apt install brave-browser
The distro version ("bionic", "disco", "eoan") doesn't matter because they are all aliases of one another. There is a single Brave .deb package that works for all versions.
New Ubuntu distro names missing from our repo script:
FocalEoanWhile the PR has been merged, the fix hasn't been deployed yet.
I have this same issue on Pop OS 19.10, but the problem is not the distro release name, the problem is it's reporting that the repository is unsigned ... here is the actual error
sudo apt install apt-transport-https curl
curl -s https://brave-browser-apt-release.s3.brave.com/brave-core.asc | sudo apt-key --keyring /etc/apt/trusted.gpg.d/brave-browser-release.gpg add -
source /etc/os-release
echo "deb [arch=amd64] https://brave-browser-apt-release.s3.brave.com/ $UBUNTU_CODENAME main" | sudo tee /etc/apt/sources.list.d/brave-browser-release-${UBUNTU_CODENAME}.list
sudo apt update
sudo apt install brave-browser
I tried setting the repository to [trusted=yes] by editing /etc/apt/sources.list.d/brave-browser-release-eoan.list but then I get the following error
E: Malformed entry 1 in list file /etc/apt/sources.list.d/brave-browser-release-eoan.list (URI parse)
E: The list of sources could not be read.
so now I am wondering, how do I install the latest stable version?
@kronikpillow Have you tried following the instructions in https://github.com/brave/brave-browser/issues/6522#issuecomment-545672208?
The instructions you followed in https://github.com/brave/brave-browser/issues/6522#issuecomment-551201329 won't work because it will try to grab the eoan distro name which doesn't exist yet. Using bionic instead of $UBUNTU_CODENAME will work and will get you the exact same .deb.
I overlooked that comment, just tried it now, it works thank you :)
While we're still waiting for the proper fix to be deployed (brave/brave-core#3750), we have added the two new Ubuntu release names to the Brave repos.
Our official installation instructions should now work on Ubuntu 19.10.
Most helpful comment
For anybody looking to install Brave on Ubuntu 19.10, follow these instructions:
The distro version ("bionic", "disco", "eoan") doesn't matter because they are all aliases of one another. There is a single Brave
.debpackage that works for all versions.