Homebrew is the most popular packager installer for macOS, if you wish to install brew on Ubuntu you can follow the below steps,
Step 1: Install git
Make sure you have git installed before you can install homebrew,
% git --version
If git is not installed, get it installed using apt-get,
% apt-get install git
Step 2: Use Curl to install homebrew from github
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Make sure you are not using the root account or else you will get the errors,
==> Checking for `sudo` access (which may request your password)...
Don't run this as root!
Step 3: Add Homebrew to PATH
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
More Posts related to Ubuntu,
- Fix - sudo: systemctl: command not found
- How to know the version of Ubuntu
- [Fix] Ubuntu E: Unable to locate package sudo error
- How to install Apache Maven on Ubuntu
- Steps to Kill a Running Process in Ubuntu Linux
- How to know current Ubuntu Linux version via terminal command
- How to stop/start/restart apache server using command [Ubuntu]
- Fix: Ubuntu (Linux) - bash: sudo: command not found error
- Ubuntu: How to search for a package to install using apt in Terminal
- Fix: E: Command line option --installed is not understood in combination with the other options
- How to install Python on Ubuntu
- Ubuntu Linux: How to Login as root User
- Access Windows share folder in Ubuntu Device in Network
- Add a User as a Sudoer Using Ubuntu Linux Command Line Terminal
- Install Oh My Zsh on Ubuntu Docker complete steps
- Fix: Make makefile:31 Error 127 (GCC)
- [fix] openssl No such file or directory error C++
- How to install zsh shell on Ubuntu
- Install Golang (Go) on Ubuntu
- Ubuntu Linux: Unzip a zip file using Terminal
- Where are Environment Variables stored in Ubuntu
- apt-get list --installed packages in Ubuntu Linux
- Ubuntu: List all Installed Packages using apt
- Quick steps to install Nginx on Ubuntu Linux
- How to kill service running on a port on Ubuntu Linux
More Posts:
- cURL Example using IP (IPv4 and IPv6) address and Port - cURL
- How to install MySQL Workbench on Mac (M1/M2) - MySQL
- How to disable Microsoft teams from startup Windows 10 - Teams
- Capture cURL Request Output to a File - cURL
- Android Error Unexpected cast to Button: layout tag was FrameLayout - Android
- How to Hum a Song to Google to find it out! [Android and iPhone] - Google
- Help or Man equivalent in PowerShell - Powershell
- Python: try-except Print Error Message Example - Python