homebrew install on linux
To install homebrew on linux, we can do this
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
And then
echo >> /home/nzai/.bashrc
echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv bash)"' >> /home/nzai/.bashrc
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv bash)"
Once you have included that in your .bashrc, then you should be able to use it.
brew install fluxcd/tap/flux
Comments