Mac关于brew的问题
brew
🍺 The missing package manager for macOS (or Linux)
项目地址:https://gitcode.com/gh_mirrors/br/brew
免费下载资源
·
此文章只针对遇到相应步骤的问题,并非万能,其他文章有更好的解决方案
先看下命令:
Control-C
中止当前任务,进程被 Kill 掉;
Control-Z
将当前任务挂起,放到后台;
由于需要安装程序,使用brew下载;可是速度太慢,多次使用control+z造成后台任务多,执行brew update出现报错:
Error: Another active Homebrew update process is already in progress.
Please wait for it to finish or terminate it to continue.
输入命令:rm -rf /usr/local/var/homebrew/locks/
可以发现没用,直接ps aux | grep ruby查看进程,输入kill -9 PID杀死进程;
再次运行brew update还是没用;
没办法,只能卸载:
输入卸载命令
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"
很明显,又报错:
curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused
首先想到是添加代理,不过又报(curl: (56) proxy connect aborted)错误;
解决方法:
1.打开网站https://www.ipaddress.com/
2.输入raw.githubusercontent.com, 查看对应IP;
3.复制对应的IP到自己电脑的hosts文件里面;(有权限限制,复制新文件改名覆盖hosts)
4.hosts文件路径: /ect/hosts
5.替换方式用命令行输入: vim /etc/hosts
6.里面加入: raw.githubusercontent.com
7.最后wq退出
再次运行,即可卸载,如果中间有警告可忽略,卸载完删除安装目录;
好了,重新安装:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
对,使用这个地址安装下载还是很慢,怎么办?心态要崩了!
1、先下载https://raw.githubusercontent.com/Homebrew/install/master/install.sh
2、修改BREW_REPO="https://mirrors.ustc.edu.cn/brew.git"
3、输入/bin/bash install.sh
很遗憾,这次没报错,但是卡住了:
Cloning into ‘/opt/Homebrew/Library/Taps/homebrew/homebrew-core‘
解决方法:
cd /opt/Homebrew/Library/Taps/
mkdir homebrew
cd homebrew
git clone https://mirrors.ustc.edu.cn/homebrew-core.git
再次输入brew update,执行成功(如果出现权限问题,给目录增加权限)
归根到底还是因为国内网络下载国外源的问题。
更换镜像:
cd "$(brew --repo)"
git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
GitHub 加速计划 / br / brew
40.41 K
9.47 K
下载
🍺 The missing package manager for macOS (or Linux)
最近提交(Master分支:1 个月前 )
90a90b30
3 个月前
47b1cab7
3 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)