Article
Homebrew 安装步骤及使用配置
00 分钟
2019-10-12
2023-5-21
type
status
category
date
slug
summary
tags
icon
Last edited time
May 21, 2023 07:57 AM
Homebrew是一款Mac OS平台下的软件包管理工具,拥有安装、卸载、更新、查看、搜索等很多实用的功能。简单的一条指令,就可以实现包管理,而不用你关心各种依赖和文件路径的情况,十分方便快捷。
 

一、安装brew

二、在使用brew前先把源换成阿里的源

换成阿里的源,速度会快一些
  1. 替换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的基本使用

  1. 安装任意包
    1. brew install 包名 e.g. brew install git
  1. 卸载任意包
    1. brew uninstall 包名 e.g. brew uninstall git
  1. 查询可用包
    1. brew search 包名 e.g. brew search git
  1. 询已安装的
    1. brew list Unix
  1. 更新Homebrew
    1. brew update
  1. 帮助信息
    1. brew -v

评论