-bash: Flutter: Command Not Found
Answer :
So you are in the Mac OS right? Try inserting single quotes OR double quotes around the file path like below. It's better to work like this with file paths in source files. :)
export PATH="/Users/carsoncarbery/development/tools/flutter/bin":$PATH
or
export PATH='/Users/carsoncarbery/development/tools/flutter/bin':$PATH
Comments
Post a Comment