Skip to main content

How to solve .zsh not found issue?

Estimated reading: 1 minutes

Please follow one of the following methods to resolve the issue:

Method 1:

  1. Go to finder
  2. Open your user (main) folder
  3. Press Control+Shift+. key then you will get all Hidden files
  4. Find the .zshrc file
  5. Add your Flutter SDK path
  6. Save the changes
  7. Restart your Android Studio
  8. Run the project again

Method 2:

  1. Open your terminal
  2. Run the following command:
       export PATH="$PATH:/path/to/flutter/bin"
    Replace /path/to/flutter/bin with the actual path to your Flutter SDK bin directory
  3. Restart your terminal
  4. Run the project again