I installed Android Studio on my computer to develop my flutter and dart project.
However, I downloaded the flutter folder for macos silicon from the flutter site and added it to a folder named "yusa".
I exported many file paths with the "nano .zshrc" command, but no matter what I do, when I type "flutter" or "flutter doctor" into the terminal, "zsh: command not found: flutter".
I get an error. My computer does not recognize flutter.
My problem has been going on for days and I need your help.
Thank you all in advance.
I solved the problem.
My .zshrc path was as follows:
ZSH_THEME="yusa"
export PATH=/opt/homebrew/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr$
export PATH="$PATH:/Users/yusa/development/flutter/bin"
Corrected path is:
ZSH_THEME="yusa"
export PATH="/opt/homebrew/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/Users/yusa/development/flutter/bin:$PATH"