赞
踩
使用镜像源:
你已经在尝试使用阿里云的镜像源,但仍然遇到下载超时问题。可以尝试其他镜像源,如清华大学的镜像源。
编辑 Homebrew 配置文件,添加或修改镜像源:
git -C "$(brew --repo)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-cask.git
更新 Homebrew:
使用以下命令更新 Homebrew:
brew update
如果你有使用代理服务器,可能需要设置代理,比如你本地有vpn,要不下载贼慢
同时记得关闭其他非上网的VPN
设置 HTTP 和 HTTPS 代理:
export http_proxy=http://your_proxy_address:your_proxy_port
export https_proxy=http://your_proxy_address:your_proxy_port
再次更新 Homebrew:
brew update
export HOMEBREW_CURL_RETRIES=10
export HOMEBREW_CURL_TIMEOUT=600
brew update
brew cleanup # 清理 Homebrew 缓存
brew doctor # 检查 Homebrew 安装的健康状况并进行修复
brew --prefix # 检查安装路径
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。