Home > Mobile >  Issue found after running flutter doctor command: "Please install the "Desktop development
Issue found after running flutter doctor command: "Please install the "Desktop development

Time:07-08

I am getting this issue when I run flutter doctor

 Visual Studio - develop for Windows (Visual Studio Build Tools 2017 15.9.47)
    X Visual Studio 2019 or later is required.
      Download at https://visualstudio.microsoft.com/downloads/.
      Please install the "Desktop development with C  " workload, including all of its default components

Is it necessary for me to solve the above issue before I can run flutter on my android studio?

CodePudding user response:

Is it necessary for me to solve the above issue before I can run flutter on my android studio?

No. This is only necessary to solve this issue if you want to develop Windows apps as it requires Visual Studio to be installed.


If you want to solve this issue. Download Visual Studio and when installing, under the "Workloads" tab, click on "Desktop development with C ".

enter image description here

  • Related