前言:
(1)终端执行flutter命令,提示:zsh: command not found: flutter。(2)解决这个问题后又一新问题,每次关闭终端窗口再打开。执行flutter命令,又提示:zsh: command not found: flutter。
参照此链接解决:
zsh: command not found: flutter (配置好flutter,每次进入终端出现问题)_zsh flutter_ZhaoQin3669的博客-CSDN博客
(1问题)原因:由于我的更改了flutter开发库的路径,配置环境中忘记更改,导致出错。
(1问题)解决方案:
1、执行【open ~/.bash_profile 】
2、将下面内容粘贴到.bash_profile文件
export PATH="$PATH:/Users/zuojigang/Documents/02-VS-Flutte/Development/flutter/bin:$PATH
3、执行【source ~/.bash_profile 】,将.bash_profile文件生效
4、执行【flutter doctor】测试效果。
(2问题)解决方案一:
如果你不嫌麻烦,你还是可以通过每次打开终端输入一下 source ~/.bash_profile 命令,再使用flutter命令。
(2问题)解决方案二:
1、执行:【open ~/.zshrc 】
2、如果 提示文件不存在,则执行:【vim ~/.zshrc 】新建一个新文件。
vim ~/.zshrc
3、再执行【open ~/.bash_profile 】
open ~/.bash_profile
4、把 bash_profile 中的内容copy到 zshrc 文件中,保存:【:wq回车】。
5 、再使用source命令重新加载一下:【source ~/.zshrc】,下次再编辑这个文件就可以直接执行:【open ~/.zshrc】
source ~/.zshrc文章来源:https://www.toymoban.com/news/detail-666706.html
6、执行【flutter doctor】测试效果。文章来源地址https://www.toymoban.com/news/detail-666706.html
到了这里,关于flutter随记:zsh:command not found:flutter的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!