1. ホーム
  2. terminal

[解決済み】zshを最新バージョンにアップデートする方法は?

2022-04-03 01:50:27

質問

最近、OS XマシンのTerminal.appでzshに無事切り替えました。zshのバージョン番号は4.3.11です。

解決方法は?

もし ホームブリュー をインストールすると、このようなことができます。

# 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

お役に立てれば幸いです、ありがとうございます。