文章目录
安装/卸载homebrew命令
- 安装
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
或者
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
或者
/bin/zsh -c “$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)”
- 卸载
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall.sh)"
安装/卸载brew报错问题处理
Homebrew的curl: (7) Failed to connect to raw错误
完整报错信息:
curl: (7) Failed to connect to raw.githubusercontent.com port 443 after 15 ms: Couldn't connect to server
解决方案
修改host文件,两种修改方式
- 在本机的 host 文件中添加,建议使用 switchhosts 方便 host 管理
199.232.68.133 raw.githubusercontent.com
199.232.68.133 user-images.githubusercontent.com
199.232.68.133 avatars2.githubusercontent.com
199.232.68.133 avatars1.githubusercontent.com
- 终端修改
sudo vi /etc/hosts
vim命令:
i:编辑修改文件
ESC + :wq :修改并保存文件
ESC + :q!:不保存退出
Homebrew 的Checksum mismatch错误
根据报错信息,删掉出现错误的软件包就可以了。我遇到的是/Users/username/Library/Caches/Homebrew/该目录下的portable-ruby-2.6.3.mavericks.bottle.tar.gz 的校验和出现了错误。只需进入该目录,删掉该软件包即可。
原答案地址:传送门