Notes

Install Homebrew on Ubuntu 20.04

Edit on GitHub

System Administration

install

Homebrew now works on Linux!

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

will take some time installing core taps, around ~322mb in downloads..

post install

1# Install the Homebrew dependencies if you have sudo access
2sudo apt-get install build-essential
3
4# Configure Homebrew in your ~/.profile
5echo 'eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)' >> ${HOME}/.profile
6
7# Add Homebrew to your PATH
8eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)