我最近在我的终端上切换到zsh。应用程序在我的OS X机器上成功。zsh的版本号为4.3.11。


当前回答

如果安装了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

其他回答

如果安装了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

据我所知,在Mac OS X上安装zsh有三个选项:

预构建二进制文件。我所知道的唯一一款是OS X自带的;这可能就是你现在正在运行的。 使用包系统(Ports, Homebrew)。 从源代码安装。)上次我做这件事并不太难。/configure, make, make install)。

如果你在用oh-my-zsh

在终端中输入omz update

注意:upgrade_oh_my_zsh已弃用

一个简单的脚本或在终端执行以下命令

# 1. download (currently the latest version is 5.8) and extract
wget https://sourceforge.net/projects/zsh/files/latest/download -O ./zsh-latest.tar.xz
mkdir zsh-latest
tar -xf zsh-latest.tar.xz -C zsh-latest --strip-components=1
cd zsh-latest

# 2. config, build, install
./configure
make -j4
sudo make install
which zsh

PS:如果构建失败,可能是因为缺少必要的库。只要按照错误消息的建议安装库即可。例:我没有ncurses:

sudo apt install ncurses-devel # for Ubuntu
sudo yum install ncurses-devel # for CentOS/Redhat

Omz更新给我以下错误:

xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun

这是git的一个问题,升级到Mac OS Ventura(13.0.1)后。Git命令给了我以上错误。

解决方案:

下载并安装“命令行工具”包来修复“git”

xcode-select --install

这将弹出一个对话框。选择“安装”。 更多详情请访问:https://apple.stackexchange.com/a/254381


Omz更新在这之后为我成功工作