skip to Main Content

I just downloaded and installed flutter SDK(archive).
when I run the "flutter doctor" command on my mac m1 terminal I receive this error. pub get failed/exit code: 69
enter image description here

thank you for guiding me.

"flutter doctor" command not work.

2

Answers


  1. try running flutter config --clear-features
    It worked for me.

    Login or Signup to reply.
  2. It happens when adding a package with a mistaken version!
    For example, the latest version of the path_provider package, for now, is ^2.0.14, if you mistakenly add e.g 4.0.1 you’ll face this issue.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search