Answers for "mac terminal does not recognize flutter"

1

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
5

flutter setup macos

if your terminal doesn't see "flutter" you have to use  
Open terminal and paste 

export PATH="$PATH:`pwd`/flutter/bin"
and then try "flutter" && "flutter doctor"
Posted by: Guest on January-30-2021

Code answers related to "mac terminal does not recognize flutter"

Browse Popular Code Answers by Language