MAC Brew 安装 Rust

89 阅读1分钟

下载速度问题

Warning: formula.jws.json: update failed, falling back to cached version.

    // 替换 Homebrew 源
    git -C "$(brew --repo)" remote set-url origin https://mirrors.ustc.edu.cn/brew.git

    // 替换 Homebrew-core 源
    git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git

    // 替换 Homebrew-cask 源
    git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git

    // 设置 API 镜像
    echo 'export HOMEBREW_API_DOMAIN="https://mirrors.ustc.edu.cn/homebrew-bottles/api"' >> ~/.zshrc

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

    source ~/.zshrc

全局变量

command not found: rustc

 // 全局生效
    echo 'export PATH="$HOME/.cargo/bin:$PATH"' >> ~/.bash_profile
    
    source ~/.bash_profile