Home > Software design >  Installation Process of Flutter
Installation Process of Flutter

Time:11-11

C:\Users\aakas>flutter doctor

'Information' is not recognized as an internal or external command, operable program or batch file. 'Information' is not recognized as an internal or external command, operable program or batch file. Error: Unable to find git in your PATH.

[1]How to fix it, I already set the environment variable and dart is working but flutter is not working

CodePudding user response:

Have you updated your Flutter path in your Environment variables? update your path in environment variables and restart your system and run again flutter doctor in Command Terminal.

CodePudding user response:

To run Flutter on your device properly you have to install these following things first:

  • Android Studio
  • Chrome (Browser)
  • Git
  • IntelliJ (Not sure if it's a must or not but you flutter doctor does check for it)

Otherwise, you'll face difficulties for not installing any of them. The following is the result I got after running flutter doctor on my device and it shows the things it checks for Flutter to be properly running.

[√] Flutter (Channel stable, 2.6.0-11.0.pre, on Microsoft Windows [Version 10.0.19043.1288], locale en-US)
[√] Android toolchain - develop for Android devices (Android SDK version 31.0.0)
[√] Chrome - develop for the web
[√] Android Studio (version 2020.3)
[√] IntelliJ IDEA Community Edition (version 2021.2)
[√] VS Code (version 1.62.1)
[√] Connected device (2 available)
  • Related