+2 votes
in Web & Google by (71.8k points)
How can I install Brave browser on my Ubuntu system? I did not find Brave browser in the "Ubuntu software" list.

1 Answer

+1 vote
by (350k points)
selected by
 
Best answer

You need to add the Brave repository to Ubuntu and then you can install the browser by running some commands.

Run the following commands in the given sequence to add the Brave repository and install the browser.

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/ stable main" | sudo tee /etc/apt/sources.list.d/brave-browser-release.list

sudo apt update

sudo apt install brave-browser

 Once installed, you can open the browser by running the following command.

brave-browser


...