type
status
category
date
slug
summary
tags
icon
Last edited time
May 21, 2023 07:57 AM
Homebrew是一款Mac OS平台下的软件包管理工具,拥有安装、卸载、更新、查看、搜索等很多实用的功能。简单的一条指令,就可以实现包管理,而不用你关心各种依赖和文件路径的情况,十分方便快捷。
一、安装brew
二、在使用brew前先把源换成阿里的源
换成阿里的源,速度会快一些
- 替换brew.git
2. 替换homebrew-core.git
替换成阿里巴巴的homebrew-core.git
3. 替换homebrew-bottles
此时需要查看mac的shell版本
echo $shell
如果输出/bin/zsh,则使用zsh的方法安装homebrew-bottles
如果输出/bin/bash,则使用zsh的方法安装homebrew-bottles
3.1 zsh
3.2 bash
三、homebrew的基本使用
- 安装任意包
brew install 包名
e.g. brew install git
- 卸载任意包
brew uninstall 包名
e.g. brew uninstall git
- 查询可用包
brew search 包名
e.g. brew search git
- 询已安装的
brew list
Unix
- 更新Homebrew
brew update
- 帮助信息
brew -v
- 作者:Jimmy Huang
- 链接:https://huangjihao.com/c01be6ce-9011-47ee-aa2f-a8fbfd15d2be
- 声明:本文采用 CC BY-NC-SA 4.0 许可协议,转载请注明出处。