logo

Homebrew Cheat Sheet


title: Homebrew date: 2023-04-12 background: bg-[#fbb041] tags: - packages manager - macos categories: - Toolkit intro: This is a quick reference cheat sheet to getting started with homebrew. plugins: - copyCode

Getting Started

Install

If not installed, install Command Line Tools (CLT)

xcode-select --install

Install Homebrew :

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

Official Website {.link-arrow}

Commands

brew install gitInstall a package
brew uninstall gitUninstall a package
brew upgrade gitUpgrade package
brew unlink gitUnlink
brew link gitLink
brew list --versions gitList the installed versions of package

Help

Display the version of Homebrew.

brew --version

Print Help Information

brew help

Print Help Info for a brew command

brew help <sub-command>

Check system for potential problems.

brew doctor

Updates

Fetch latest version of homebrew and formula

brew update

Show formulae with an updated version available

brew outdated

Upgrade all outdated and unpinned brews

brew upgrade

Upgrade only the specified brew

brew upgrade <formula>

Prevent the specified formulae from being upgraded

brew pin <formula>

Allow the specified formulae to be upgraded.

brew unpin <formula>

Repositories

List all the current tapped repositories (taps)

brew tap

Tap a formula repository from Github using https for tap https://github.com/user/homebrew-repo

brew tap <user/repo>

Tap a formula repository from the specified URL

brew tap <user/repo> <URL>

Remove the given tap from the repository

brew untap <user/repo>

Cask

Tap the Cask repository from Github.

brew tap homebrew/cask

List all the installed casks .

brew list --cask

Search all known casks based on the substring text.

brew search <text>

Install the given cask.

brew install --cask <cask>

Reinstalls the given Cask

brew reinstall --cask <cask>

Uninstall the given cask.

brew uninstall --cask <cask>

Search, Install, Remove

List all the installed formulae.

brew list

Display all locally available formulae for brewing.

brew search

Perform a substring search of formulae names for brewing.

brew search <text>

Display information about the formula.

brew info <formula>

Install the formula.

brew install <formula>

Uninstall the formula.

brew uninstall <formula>

Cleanup

Remove older versions of installed formulae.

brew cleanup

Remove older versions of specified formula.

brew cleanup <formula>

Display all formula that will be removed (dry run)

brew cleanup -n
🛠️ 开发工具

Homebrew

Homebrew Cheat Sheet - 快速参考指南,收录常用语法、命令与实践。

📂 分类 · 开发工具🧭 Markdown 速查🏷️ 2 个标签
#brew#macos
向下滚动查看内容
返回全部 Cheat Sheets

Getting Started

Install

If not installed, install Command Line Tools (CLT)

BASH
滚动查看更多
xcode-select --install

Install Homebrew :

BASH
滚动查看更多
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Official Website {.link-arrow}

Commands
brew install gitInstall a package
brew uninstall gitUninstall a package
brew upgrade gitUpgrade package
brew unlink gitUnlink
brew link gitLink
brew list --versions gitList the installed versions of package
Help

Display the version of Homebrew.

BASH
滚动查看更多
brew --version

Print Help Information

BASH
滚动查看更多
brew help

Print Help Info for a brew command

BASH
滚动查看更多
brew help <sub-command>

Check system for potential problems.

BASH
滚动查看更多
brew doctor
Updates

Fetch latest version of homebrew and formula

BASH
滚动查看更多
brew update

Show formulae with an updated version available

BASH
滚动查看更多
brew outdated

Upgrade all outdated and unpinned brews

BASH
滚动查看更多
brew upgrade

Upgrade only the specified brew

BASH
滚动查看更多
brew upgrade <formula>

Prevent the specified formulae from being upgraded

BASH
滚动查看更多
brew pin <formula>

Allow the specified formulae to be upgraded.

BASH
滚动查看更多
brew unpin <formula>
Repositories

List all the current tapped repositories (taps)

BASH
滚动查看更多
brew tap

Tap a formula repository from Github using https for tap https://github.com/user/homebrew-repo

BASH
滚动查看更多
brew tap <user/repo>

Tap a formula repository from the specified URL

BASH
滚动查看更多
brew tap <user/repo> <URL>

Remove the given tap from the repository

BASH
滚动查看更多
brew untap <user/repo>
Cask

Tap the Cask repository from Github.

BASH
滚动查看更多
brew tap homebrew/cask

List all the installed casks .

BASH
滚动查看更多
brew list --cask

Search all known casks based on the substring text.

BASH
滚动查看更多
brew search <text>

Install the given cask.

BASH
滚动查看更多
brew install --cask <cask>

Reinstalls the given Cask

BASH
滚动查看更多
brew reinstall --cask <cask>

Uninstall the given cask.

BASH
滚动查看更多
brew uninstall --cask <cask>
Search, Install, Remove

List all the installed formulae.

BASH
滚动查看更多
brew list

Display all locally available formulae for brewing.

BASH
滚动查看更多
brew search

Perform a substring search of formulae names for brewing.

BASH
滚动查看更多
brew search <text>

Display information about the formula.

BASH
滚动查看更多
brew info <formula>

Install the formula.

BASH
滚动查看更多
brew install <formula>

Uninstall the formula.

BASH
滚动查看更多
brew uninstall <formula>
Cleanup

Remove older versions of installed formulae.

BASH
滚动查看更多
brew cleanup

Remove older versions of specified formula.

BASH
滚动查看更多
brew cleanup <formula>

Display all formula that will be removed (dry run)

BASH
滚动查看更多
brew cleanup -n

相关 Cheat Sheets