mac安装homebrew
Posted 梁吉林
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mac安装homebrew相关的知识,希望对你有一定的参考价值。
整了个新电脑,装各种东西真是个麻烦事儿。
homebrew官网上的安装指令直接执行:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
我是开着VPN的。
遇到的第一个问题:
Failed to connect to raw.githubusercontent.com port 443
解决方法就是直接修改/etc/hosts指定:
1.去这里https://www.ipaddress.com/site/raw.githubusercontent.com找到IP地址,写到/etc/hosts里,例如:
185.199.110.133 raw.githubusercontent.com
第二个问题是这个:
fatal: unable to access ‘https://github.com/Homebrew/brew/’: LibreSSL SSL_read: error:02FFF03C:system library:func(4095):Operation timed out, errno 60
Failed during: git fetch --force --tags origin
开着VPN都不行,真是那啥…
解决方法是换成国内mirrors:
export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git"
export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git"
export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles"
然后再安装就可以成功了。
以上是关于mac安装homebrew的主要内容,如果未能解决你的问题,请参考以下文章