修改 ~/.zshrc
文件
在 .zshrc
文件中添加路径
在终端中使用 open .zshrc
命令打开文件:
添加
PATH=/bin:/usr/bin:/usr/local/bin:${PATH}
export PATH
再重新打开终端,应该已经解决 zsh: command not found: xxx
问题
如果在 ~/.bash_profile
里配置了其他如 flutter 环境,需要在 ~/.zshrc
添加:
source ~/.bash_profile
执行
网友评论