How to setup Flutter in Windows
Download the latest Flutter SDK from below link. In that click on flutter_window_xxx.zip button. as mentioned in the above link or use this link: https://flutter.dev/docs/get-started/install/windows
Extract the zip file and copy flutter folder into your desired installation location for the Flutter SDK (eg. C:\src\flutter; do not install Flutter in a directory like C:\Program Files).
Inside Flutter folder find flutter_console.bat. Start it by double-clicking.
Now set your environment variable
From the Start search bar in , type ‘env’ and select Edit environment variables
Under User variables check if there is an entry called Path:
Click on Edit. New Dialog open from it click on new and copy full path to flutter\bin as its value
open cmd as administrator and do enter the following command to see if flutter is installed properly: flutter doctor
If it does not show any error and shows a list of flutter commands you are all set.
Last updated