在macos中执行Flutter命令失效, 提示 zsh: command not found: flutter
单次解决办法
这种方法,只对当前终端窗口有效,关闭之后无效了
source ~/.bash_profile
永久解决方法
1 、执行:【open ~/.zshrc 】
open ~/.zshrc
2 、如果 提示文件不存在,则执行:【vim ~/.zshrc 】新建一个新文件。
vim ~/.zshrc
3 、在.zshrc中写入source ~/.bash_profile
source ~/.bash_profile
4 、再使用source命令重新加载一下:source ~/.zshrc
source ~/.zshrc
5、重新运行flutter doctor
flutter doctor
评论区