Write the Code. Change the World.

12月 25

刚新装 mac ,使用 curl 安装 homebrew 和 oh my zsh 时,会遇到 curl: (7) Failed to connect to raw.github.com port 443: Connection refused 和 curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused 的情况。这个时候,就是你用浏览器打开 raw.github.com 也是打不开的。

怎么弄呢

  • 先去 https://www.ipaddress.com/ 这里找到 raw.github.com 对应的 ip 地址。这里是 199.232.96.133
  • 终端中 sudo vim /etc/hosts ,添加
   199.232.96.133 raw.github.com
   199.232.96.133 raw.githubusercontent.com

再去尝试。

然后,可能会出现 ‘git’命令需要使用命令行开发者工具。您要现在安装该工具吗? 选择安装,然后继续。其实,这里如果你先安装了 xcode 就不会出现这个了。

继续执行就会没事了。

12月 25

安装软件

安装中可能存在的错误

# curl 安装 oh my zsh 时
curl: (7) Failed to connect to raw.github.com port 443: Connection refused

上边的错误解决请看:https://blog.vini123.com/553