macOS .zshrc:31: command not found: compdef 问题

1、本机系统:

        macOS Big Sur  11.6

2、问题

 解决上一个问题zsh: command not found: XXX问题(参考文章),最后更新配置source ~/.zshrc 的时候报错,报错信息如下:

macOS .zshrc:31: command not found: compdef 问题_第1张图片

 3、解决办法

Compdef 基本上是 zsh 用于加载自动完成的函数。需要激活完成系统。
如果您使用的是 oh-my-zsh 之类的东西,那么这已经解决了,否则您需要将以下内容添加到您的 ~/.zshrc

(1)终端执行 vim ~/.zshrc 或者open .zshrc(没有了就自己新建一个)touch .bash_profile 创建.bash_profile 文件

(2)将以下代码加入到文件内容顶部

autoload -Uz compinit

compinit

macOS .zshrc:31: command not found: compdef 问题_第2张图片

 错误就不在出现了 

你可能感兴趣的:(常见错误,bash,macos,linux)