skip to Main Content

I added the route to the bin to the PATH but CMD still doesn’t recognize it. I have Windows 10.
echo %PATH%;
where the bin is located;

I tried to write flutter commands in CMD, but it gave "’flutter’ is not recognized as an internal or external command" feedback

2

Answers


  1. hi I think this link will help https://www.fluttercampus.com/guide/200/flutter-is-not-recognized-as-an-internal-or-external-command/
    try reinstalling flutter too and then run this command => flutter doctor
    and I suggest using git-bash instead of cmd

    Login or Signup to reply.
    • Go to properties by right clicking computer icon.
    • click on Advanced system settings. (left side of the window)
    • opens Environment Variables
    • double click on path
    • Click on New and paste the path of the bin folder located in the flutter sdk folder.
      example : C:srcflutterbin
    • Click OK OK and OK
    • Restart your pc (Recommend)
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search