MAC 系统安装 Homebrew和git

GIT下载安装

新装的MAC系统,可以直接用这个方法安装,不依靠homebrew
https://sourceforge.net/projects/git-osx-installer/files/latest/download

Homebrew官网

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

复制上面安装命令至终端,回车。
但有时会碰到无不访问链接raw.githubusercontent.com的错误,解决方法如下:
https://ipaddress.com上查询raw.githubusercontent.comIP 地址,然后修改hosts。
hosts文件修改教程

1.右键访达(Finder),选择点击【前往文件夹】。或者使用快捷键同时按住 【Shift+Command+G】三个组合按键。
2.然后输入:/private ,再点击【前往】。
3.看到文件夹【etc】,右键【etc】文件夹选择点击【显示简介】。
4.进入 etc 的显示简介界面,在最下方点击【小锁】图标,输入开机密码,点击【好】。
5.再把【wheel】和【everyone】改为【读与写】。
6.进入【etc】文件夹里面。
7.找到文件【hosts】,右键【hosts】文件夹选择点击【显示简介】。
8.进入 hosts 的显示简介界面,在最下方点击【小锁】图标,输入开机密码,点击【好】。
9.再把【wheel】和【everyone】改为【读与写】。即可设置 hosts 能编辑。
把下面内容加到hosts文件中。

#GitHub Start
52.74.223.119 github.com
192.30.253.119 gist.github.com
54.169.195.247 api.github.com
185.199.111.153 assets-cdn.github.com
151.101.76.133 raw.githubusercontent.com
151.101.108.133 user-images.githubusercontent.com
151.101.76.133 gist.githubusercontent.com
151.101.76.133 cloud.githubusercontent.com
151.101.76.133 camo.githubusercontent.com
151.101.76.133 avatars0.githubusercontent.com
151.101.76.133 avatars1.githubusercontent.com
151.101.76.133 avatars2.githubusercontent.com
151.101.76.133 avatars3.githubusercontent.com
151.101.76.133 avatars4.githubusercontent.com
151.101.76.133 avatars5.githubusercontent.com
151.101.76.133 avatars6.githubusercontent.com
151.101.76.133 avatars7.githubusercontent.com
151.101.76.133 avatars8.githubusercontent.com

#GitHub End

终端执行 ping raw.githubusercontent.com,如果不通,说明修改后的hosts文件没生效,请在终端执行清除DNS缓存步骤,一般情况如不生效,可能是hosts内容格式错误。

sudo killall -HUP mDNSResponder;sudo killall mDNSResponderHelper;sudo dscacheutil -flushcache

方法二

上面方法安装的源在外国,下载很慢。就跟npm类似,只需要切换国内的源。

/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"

随便选一个源就行,但是需要cask源的只能选择包含cask的源(实际上大部分都选择不包含cask源,官网推荐的是阿里的源)。 输入序号之后需要输入开机密码,如果不成功可以切换个源试试。我选的是5阿里源。

如果没装[Git]会提示让安装,下面有GIT的安装方法。

你可能感兴趣的:(MAC 系统安装 Homebrew和git)