本文介绍: 【代码】Mac brew教程。
  • 一、安装brew

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

    二、查看brew版本

    brew -v
    

    在这里插入图片描述

    brew -v

    三、搜索软件

    命令格式:brew search 软件名 eg:

    brew search nginx
    

    四、安装软件

    命令格式:brew install 软件名 eg:

    brew install nginx
    

    五、卸载软件

    命令格式:brew uninstall 软件名 eg:

    brew uninstall nginx
    

    六、查看安装的软件列表

    brew list
    

    七、更新 brew

    brew update
    

    八、显示软件信息

    brew info
    

    九、显示包依赖

    brew deps
    

    十、确认 brew 是否在正常工作

    brew doctor
    

    十一、配置brew源

    1、替换成国内中科源:

    cd "$(brew --repo)" && git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
    

    homebrew-core

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

    homebrew-cask

    cd "$(brew --repo)/Library/Taps/homebrew/homebrew-cask" && git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git
    

    如果你的Mac使用的是zsh终端,使用如下命令:

    echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.zshrc && source ~/.zshrc
    

    如果你的Mac使用的是bash终端,使用如下命令:

    echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile && source ~/.bash_profile 
    

    更新

    brew update
    

    2、替换成国内阿里源

    cd "$(brew --repo)" && git remote set-url origin https://mirrors.aliyun.com/homebrew/brew.git
    

    homebrew-core

    cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" && git remote set-url origin https://mirrors.aliyun.com/homebrew/homebrew-core.git
    

    homebrew-cask

    cd "$(brew --repo)/Library/Taps/homebrew/homebrew-cask" && git remote set-url origin https://mirrors.aliyun.com/homebrew/homebrew-cask.git
    

    如果你的Mac使用的是zsh终端,使用如下命令:

    echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.zshrc &&  source ~/.zshrc
    

    如果你的Mac使用的是bash终端,使用如下命令:

    echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.bash_profile  && source ~/.bash_profile
    

    更新

    brew update
    

    十二、还原brew的源

    cd "$(brew --repo)" && git remote set-url origin https://github.com/Homebrew/brew.git
    
    cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" && git remote set-url origin https://github.com/Homebrew/homebrew-core.git
    

    如果你的Mac使用的是zsh终端,使用如下命令:

    vim ~/.zshrc
    # 删除 HOMEBREW_BOTTLE_DOMAIN 配置
    source ~/.zshrc
    

    如果你的Mac使用的是bash终端,使用如下命令:

    vim ~/.bash_profile
    # 删除 HOMEBREW_BOTTLE_DOMAIN 配置
    source ~/.bash_profile
    

    更新

    brew update
    

原文地址:https://blog.csdn.net/qzmlyshao/article/details/135976486

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。

如若转载,请注明出处:http://www.7code.cn/show_66355.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注