侧边栏壁纸
博主头像
DOKI SEKAI博主等级

行动起来,活在当下

  • 累计撰写 114 篇文章
  • 累计创建 38 个标签
  • 累计收到 1 条评论

目 录CONTENT

文章目录

mac以及linux安装brew(homebrew)

君
2024-07-23 / 0 评论 / 0 点赞 / 43 阅读 / 2360 字

mac以及linux安装brew(homebrew)

中科大官方文档:https://mirrors.ustc.edu.cn/help/brew.git.html?eqid=ef11a7dc000d146d000000046475aa2a

  1. 设置环境变量

    export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.ustc.edu.cn/brew.git"
    export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.ustc.edu.cn/homebrew-core.git"
    export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.ustc.edu.cn/homebrew-bottles"
    export HOMEBREW_API_DOMAIN="https://mirrors.ustc.edu.cn/homebrew-bottles/api"
    
  2. 安装 Homebrew

    /bin/bash -c "$(curl -fsSL https://github.com/Homebrew/install/raw/HEAD/install.sh)"
    
  3. 创建或编辑 .zprofile 文件

    vi /Users/你的用户名/.zprofile
    
  4. 添加以下内容到 .zprofile

    eval "$(/opt/homebrew/bin/brew shellenv)"
    export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.ustc.edu.cn/brew.git"
    export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.ustc.edu.cn/homebrew-core.git"
    
  5. 使文件生效

    source ~/.zprofile
    
0

评论区