zsh: command not found: flutter

更新了MacOS Catalina之后打开终端会出现下面的提示


image.png

据官方说,从 macOS Catalina 版开始,您的 Mac 将使用 zsh 作为默认登录 Shell 和交互式 Shell。您还可以在较低版本的 macOS 中将 zsh 设置为默认 Shell。

运行chsh -s /bin/zsh之后,发现flutter的命令不能用了,这是因为切换了shell执行工具

zsh: command not found: flutter_第1张图片
image.png

解决方法也很简单

  • 单次解决办法
    这种方法,只对当前终端窗口有效,关闭之后无效了
source ~/.bash_profile
  • 永久解决方法
    复制一份.bash_profile,然后改名为.zprofile,终端执行source ~./zprofile
source ~/.zprofile

之后就又可以愉快的玩耍了

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