Categories: TutorialsUbuntu

How to Install Homebrew on Ubuntu 20.04 LTS

Homebrew is a widely used package manager in Mac systems. Additionally, you can install Homebrew on Linux and perform package management tasks such as installing and upgrading software packages. HOmebrew cask provides support for quick installation of application such as VLC, Google Chrome and so much more.

In this guide, we

Now, let us walk you through the installation of Homebrew on Ubuntu 20.04.

Step 1: Update the system & install dependencies

Let’s hit the ground running. To start off, update the package lists.

$ sudo apt update

Once the update of the package index is complete, install the build-essential meta-package. This provides a link to several other packages that are going to be installed on your system as dependencies.

$ sudo apt install build-essential

Next, install the git version control package.

$ sudo apt install git

Great, we are all good with the dependencies, let’s now proceed and install HomeBrew.

Step 2: Download and run the Homebrew installation script

There is a prebuilt shell script that automates the installation of Homebrew. So, execute the following command to download and run the shell script.

$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

The execution of the script creates a linuxbrew directory in the home directory that contains Homebrew settings, libraries, configuration files, and other crucial files.

The download and execution of the script takes a while, and therefore, some patience will do.

Step 3: Add Homebrew to your PATH

Once the command is fully executed, Some additional steps are required to add Homebrew to your PATH. Some steps will be provided for you to guide you on how to accomplish this.

So, in my case I executed the commands as indicated:

$ echo ‘eval “$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)”’ >> /home/winnie/.profile
$ eval “$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)”

At this juncture, Homebrew is successfully installed. You can confirm the version of Brew installed as follows.

$ brew --version

Let’s now give Homebrew a try and see if we can install some packages.

Step 4: Confirm that Homebrew works

To verify that Homebrew is working as expected, run the command:

$ brew doctor

You will get confirmation that your system is ready to use brew.

Now, you can use Homebrew to install software using the syntax:

$ brew install package-name

For example, to install Python3, run the command:

$ brew install python3

When the installation of Python3 is complete, verify the version installed as follows:

$ python3 -V

Perfect! We have managed to successfully install and configure Homebrew on Ubuntu 20.04. We trust that this guide was able to help you with the installation of Homebrew on Ubuntu 20.04

Ubuntu Server Admin

Recent Posts

Advantech AOM-2721 is now Ubuntu Certified

Canonical announces that the Advantech AOM-2721 is officially joining the list of Ubuntu Certified Hardware.…

6 hours ago

Ruby and Rails Performance Roundup: The Backlog Edition

Yet again instead of tweets, a blog post. The backlog got out of hand -…

6 hours ago

How to Deploy OpenProject on Ubuntu VPS

This article provides a guide demonstrating how to deploy OpenProject on Ubuntu VPS. What is…

6 hours ago

Canonical integrates NVIDIA Nemotron 3.5 Lightning with Ubuntu for always-on AI agents

Canonical is pleased to announce that  NVIDIA’s newly introduced NVIDIA Nemotron 3.5 Lightning, an open,…

2 days ago

Xfwl4’s Second Preview Release

I’m pleased to announce the second preview release of xfwl4, Xfce’s Wayland compositor, version 4.21.1.…

2 days ago

How to Install, Secure, and Set Up MySQL on Ubuntu 26.04 LTS

If you have been using an ecommerce store to place online orders or have been…

3 days ago