zsh (anon):12: character not in range

运行source ~/.zshrc,报错zsh (anon):12: character not in range

这是由于环境变量 LC_ALL 和 LANG 未设置的缘故。

只需要在~/.zshrc文件前面加入

1
2
export LC_ALL=C.UTF-8
export LANG=C.UTF-8

然后运行source ~/.zshrc即可。