Homebrew

The missing package manager for macOS(macOS 缺失的软件包的管理器)

  • Install Homebrew
    /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

  • 使用 Homebrew 安装 Apple 没有预装但 你需要的东西。
    brew install wget

  • Homebrew 会将软件包安装到独立目录,并将其文件软链接至 /usr/local 。

    1
    2
    3
    4
    5
    6
    7
    8
    $ cd /usr/local
    $ find Cellar
    Cellar/wget/1.16.1
    Cellar/wget/1.16.1/bin/wget
    Cellar/wget/1.16.1/share/man/man1/wget.1

    \$ ls -l bin
    bin/wget -> ../Cellar/wget/1.16.1/bin/wget
  • Homebrew 不会将文件安装到它本身目录之外,所以您可将 Homebrew 安装到任意位置。

  • 完全基于 Git 和 ruby,所以自由修改的同时你仍可以轻松撤销你的变更或与上游更新合并。

    1
    brew edit wget # 使用 $EDITOR 编辑!
  • Homebrew 的配方都是简单的 Ruby 脚本:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    class Wget < Formula
    homepage "https://www.gnu.org/software/wget/"
    url "https://ftp.gnu.org/gnu/wget/wget-1.15.tar.gz"
    sha256 "52126be8cf1bddd7536886e74c053ad7d0ed2aa89b4b630f76785bac21695fcd"

    def install
    system "./configure", "--prefix=#{prefix}"
    system "make", "install"
    end
    end
  • Homebrew 使 macOS 更完整。使用 gem 来安装 RubyGems、用 brew 来安装那些依赖包。

1
2
3
4
brew install git
brew install wget
brew install Zsh
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-Zsh/master/tools/install.sh -O -)"

References

感谢支持,让我安静的做蚂蚁梦!