zsh (anon):12: character not in range
运行source ~/.zshrc
,报错zsh (anon):12: character not in range
这是由于环境变量 LC_ALL 和 LANG 未设置的缘故。
只需要在~/.zshrc
文件前面加入
1 | export LC_ALL=C.UTF-8 |
然后运行source ~/.zshrc
即可。
运行source ~/.zshrc
,报错zsh (anon):12: character not in range
这是由于环境变量 LC_ALL 和 LANG 未设置的缘故。
只需要在~/.zshrc
文件前面加入
1 | export LC_ALL=C.UTF-8 |
然后运行source ~/.zshrc
即可。