-
Install base-devel
pacman -Syu # CAUTION: this updates the whole system pacman -S base-devel
-
Run the installer script
sh -c "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install.sh)"
-
Set brew environment variables
[ -d /home/linuxbrew/.linuxbrew ] && eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv) # You most likely want to add the above line to your shell startup file as well.
-
Make
brew doctor
happybrew doctor # In case it complains about the linked directory mkdir -p /home/linuxbrew/.linuxbrew/var/homebrew/linked chown -R $(whoami) /home/linuxbrew/.linuxbrew/var/homebrew/linked # Ignore the warning about python being symlinked to python3. This is the default behavior in ArchLinux/Manjaro and chaning the symlink is dangerous.
-
Vendor-install ruby
brew vendor-install ruby
-
Install gcc (as recommended by the installer script)
brew install gcc
Last active
September 17, 2024 19:24
-
-
Save fardjad/114ebf50a0dd031418bb63b3b134db51 to your computer and use it in GitHub Desktop.
[How to Install Homebrew on Manjaro] Steps required to install homebrew on Manjaro Linux #linux #manjaro #homebrew
If you in new version on Manjaro get an error, try adding the libxcrypt-compat
package. It helped in my case
Hi, add the following line to your .zshrc file to set the environment variable permanently
Make sure the path the brew is correct
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
awesome, thanks dude