小编典典

如何将 zsh 更新到最新版本?

all

我最近在我的 OS X 机器上的 Terminal.app 上成功切换到 zsh。zsh 的版本号是 4.3.11。


阅读 71

收藏
2022-05-10

共1个答案

小编典典

如果你安装了Homebrew,你可以这样做。

# check the zsh info
brew info zsh

# install zsh
brew install --without-etcdir zsh

# add shell path
sudo vim /etc/shells

# add the following line into the very end of the file(/etc/shells)
/usr/local/bin/zsh

# change default shell
chsh -s /usr/local/bin/zsh

希望有帮助,谢谢。

2022-05-10