zsh: command not found: XXX

原因:
bash_profile里的环境变量在zsh shell里没法执行


解决步骤

  • 终端执行
    open ~/.zshrc
  • 在.zshrc里加入
    # User configuration
    source ~/.bash_profile
  • 让新添加的内容生效执行
    source ~/.zshrc

你可能感兴趣的:(zsh: command not found: XXX)