写点什么

S0002-HomeBrew 基础入门

作者:远观钱途
  • 2023-09-11
    北京
  • 本文字数:1503 字

    阅读完需:约 5 分钟

S0002-HomeBrew基础入门

零、homebrew

Homebrew 是一个自由开源的软件包管理系统,主要设计给 Apple Mac 电脑的操作系统 macOS 使用,但也支持 Linux 系统。它可以快速简洁的安装、卸载以及管理计算机软件包。


Homebrew 的一个重要特点是其包含了一些 Mac 预装软件缺失的 GNU 工具,如:bash, git, wget, curl 等。


并且其自身的安装和使用都非常简单,并且软件包的安装是独立的,互不影响,这也避免了因为依赖的问题导致的软件包卸载困难的情况。

一、检测

1.1 查看当前版本

brew -v


输出如下,表示已经安装


Homebrew 4.0.28Homebrew/homebrew-core (git revision efc626a3fe3; last commit 2023-07-18)
复制代码

二、卸载

2.1 方式一:官方卸载

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


这是 Homebrew 官方提供的卸载脚本,非常方便且安全。

2.2 方式二:手动卸载

cd brew –prefixbrew prunerm git ls-filesrm -r /usr/local/Homebrewrm -rf .gitrm -rf ~/Library/Caches/Homebrewrm -rf /usr/local/optrm -rf /usr/local/Caskroomrm -rf /usr/local/var/homebrew
复制代码


本人未曾尝试过,不推荐使用。

三、安装

进入官网,直接找到如下命令行。


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

四、更换

4.1 更换 brew 源

4.1.1 什么是 brew 源?都有哪些源?

  1. 官方源 Homebrew/core(已更名为 homebrew-core)

  2. 这是默认的 Homebrew 源。 它是由 Homebrew 维护团队维护的,应用程序包的更新速度非常快,几乎可以满足日常生产使用。但如果在国内,可能会遇到网络问题,速度慢。

  3. 官方 bottles 源

  4. 这是 Homebrew 二进制预编译包的源。一些常用的包 Homebrew 会进行预编译,在需要的时候进行下载。

  5. 清华大学开源软件镜像站

  6. 清华大学开源软件镜像站提供了 Homebrew/core 的镜像,更新速度很快,国内用户可以使用此镜像提高 brew 更新的速度。

  7. 中科大源

  8. 中科大也提供了 Homebrew/core 的源,其特点也是更新速度快,网络稳定,是另一国内用户的良好选择。

4.1.2 为什么要更换?

主观:使用 brew install 安装软件的时候,巨慢无比,程序员无法忍受如此之慢!


客观:默认官方的更新源都是存放在 GitHub 上的,这也是中国大陆用户访问缓慢的原因,一般来说我们会更倾向选择国内提供的更新源,在此推荐中国科大以及清华大学提供的更新源

4.1.3 如何更换?

查看自己的源:


cd "$(brew --repo)"git remote -v


官方源更新:


brew update


清华大学开源软件镜像站:


cd "$(brew --repo)"git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
复制代码


中科大源:


cd "$(brew --repo)"git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
复制代码

五、复原

# 重置 brew.git:cd "$(brew --repo)"git remote set-url origin https://github.com/Homebrew/brew.git
# 重置 homebrew-core.git:cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"git remote set-url origin https://github.com/Homebrew/homebrew-core.git
# 重置 homebrew-cask.git (如果你使用的是 cask 插件的话)cd "$(brew --repo)"/Library/Taps/homebrew/homebrew-caskgit remote set-url origin https://github.com/Homebrew/homebrew-cask.git
# 更新 Homebrewbrew update
复制代码

六、基本命令


发布于: 刚刚阅读数: 4
用户头像

远观钱途

关注

还未添加个人签名 2021-05-20 加入

还未添加个人简介

评论

发布
暂无评论
S0002-HomeBrew基础入门_计算机修仙传_远观钱途_InfoQ写作社区