Answers for "zsh: command not found: flutter"

2

zsh: command not found: flutter

#Set environment $PATH of flutter
1- Open the file $HOME/.zshrc 
2- Add the following line in the opened file:
export PATH="$PATH:/YOUR_FLUTTER_DIR/flutter/bin"
3- Save changes and restart your terminal
Posted by: Guest on December-30-2020
0

add flutter to path mac permanently

Open Terminal
nano ~/.zshrc
Add: export PATH=[PATH_TO_FLUTTER_GIT_DIRECTORY]/flutter/bin:$PATH 
Run: source ~/.zshrc
restart terminal
Run: flutter doctor -v
Posted by: Guest on December-13-2020
0

zsh: command not found

PATH=/bin:/usr/bin:/usr/local/bin:${PATH}
export PATH
Posted by: Guest on August-02-2020

Code answers related to "zsh: command not found: flutter"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language