Homebrew

Homebrew

Homebrew installation

Run the following command on your terminal.

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

Homebrew Operation

Install softwares

1
2
brew install [software]
brew install [software]@[version]

For example, to install Python3.9.

1
brew install python@3.9

Uninstall softwares

1
brew uninstall python@3.9

List installed softwares

1
brew list

List installed softwares and filter the specific one.

1
brew list | grep [software]

For example, filter all installed python:

1
brew list | grep python