一个好看还用的终端确实很赏心悦目。那么既然存在,没有不用的道理。那么开始吧。
操作走起
如果有问题,可以看看 https://blog.vini123.com/552
mac 默认的 shell 是 dash, 我们把它设置为 zsh。
chsh -s /bin/zsh
# 如果想用回 dash
chsh -s /bin/bash
一个好看还用的终端确实很赏心悦目。那么既然存在,没有不用的道理。那么开始吧。
如果有问题,可以看看 https://blog.vini123.com/552
mac 默认的 shell 是 dash, 我们把它设置为 zsh。
chsh -s /bin/zsh
# 如果想用回 dash
chsh -s /bin/bash
Mac curl: (7) Failed to connect to raw.github.com port 443: Connection refused 处理
刚新装 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 也是打不开的。
199.232.96.133 raw.github.com
199.232.96.133 raw.githubusercontent.com
再去尝试。
然后,可能会出现 ‘git’命令需要使用命令行开发者工具。您要现在安装该工具吗? 选择安装,然后继续。其实,这里如果你先安装了 xcode 就不会出现这个了。
继续执行就会没事了。
brew install node
# curl 安装 oh my zsh 时
curl: (7) Failed to connect to raw.github.com port 443: Connection refused
上边的错误解决请看:https://blog.vini123.com/553