【MAC】brew install XXX一直卡在Updating Homebrew…的解决办法
运行命令brew install pip3,结果界面一直卡在Updating Homebrew...上
解决办法是替换brew源:
替换brew.git: cd "$(brew --repo)" git remote set-url origin https://mirrors.ustc.edu.cn/brew.git 替换homebrew-core.git: cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
在中科大源出问题时可以切换回官方源:
重置brew.git: cd "$(brew --repo)" git remote set-url origin https://github.com/Homebrew/brew.git 重置homebrew-core.git: cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" git remote set-url origin https://github.com/Homebrew/homebrew-core.git
当然还是会出现每次install的时候都会卡一下Updating Homebrew...的情况,这时候就可以设置Homebrew更新为手动更新,这样需要的时候运行brew update命令手动更新就可以了。
export HOMEBREW_NO_AUTO_UPDATE=true
标签: Mac
还没有人抢沙发呢~