This is an old revision of the document!
Flutter
Install Flutter from Install - Flutter
Windows Installation
Extracting Flutter
It is recommended to place the extracted flutter the zip file in the folder where all your projects will be.
Updating your path
- From the Start search bar, enter ‘env’ and select Edit environment variables for your account.
- Under User variables check if there is an entry called Path:
- If the entry exists, append the full path to flutter\bin using ; as a separator from existing values.
- If the entry doesn’t exist, create a new user variable named Path with the full path to flutter\bin as its value.
You have to close and reopen any existing console windows for these changes to take effect.
full path to flutter\bin example: C:\Users\<your-user-name>\Documents\Develop\Flutter\bin
Run flutter doctor
From a console window that has the Flutter directory in the path, run the command flutter doctor
The command checks your environment and displays a report of your flutter installation. Please read the output and solve any issues that may appear.
You may read more on this at Run flutter doctor - Flutter