官方网址 : https://brew.sh
官方提供安装方法 (但是常常会有报错)
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
1、报告错误
fatal: unable to access 'https://github.com/Homebrew/brew/': LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to 127.0.0.1:50517
Failed during: git fetch origin master:refs/remotes/origin/master --tags —force
解决办法:
1. ping [http://github.com](https://link.zhihu.com/?target=http%3A//github.com) 获取ip地址
2. Command+Shift+G,打开/etc/hosts文件,将域名添加上就可以了:192.30.253.113 [http://github.com](https://link.zhihu.com/?target=http%3A//github.com) (**hosts文件修改后,会提示没有权限,分享一个我的做法:将hosts文件复制一个到桌面,添加完域名,保存,再将此文件拖回到etc文件夹下,替换掉原来的文件,中间根据提示输入用户密码即可**)
(推荐使用)
sudo vim /etc/hosts
然后输入你电脑的密码进入host文件,
按 i 键进入编辑状态,修改host。
然后,ESC退出编辑状态,输入 :wq 保存并退出vim
2、报告错误
curl: (35) LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to raw.githubusercontent.com:443
解决办法: 使用国内资源
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
网友评论