How to Install Flutter | Flutter installation
Get the Flutter SDK
Run
Android setup
Install Android Studio
Set up your Android device
Set up the Android emulator
Install the Flutter and Dart plugins in your android studio
- Download the following
installation bundle to get the latest stable release of the Flutter SDK:
For other release
channels, and older builds, see the SDK archive page.
- Extract the zip file and place the contained flutter in the desired installation location for the Flutter SDK (for example, C:\src\flutter; do not install Flutter in a directory like C:\Program Files\ that requires elevated privileges).
Update your path
If you wish to run
Flutter commands in the regular Windows console, take these steps to add
Flutter to the
PATH
environment
variable:- 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 toflutter\bin
as its value.
Note that you have to
close and reopen any existing console windows for these changes to take effect.
Run flutter doctor
From a console window
that has the Flutter directory in the path (see above), run the following
command to see if there are any platform dependencies you need to complete the
setup:
This command checks
your environment and displays a report of the status of your Flutter
installation. Check the output carefully for other software you might need to
install or further tasks to perform (shown in bold text).
For example:
content_copy
[-] Android toolchain - develop for Android devices
• Android SDK at D:\Android\sdk
✗ Android SDK is missing command line tools; download from https://goo.gl/XxQghQ
• Try re-installing or updating your Android SDK,
visit https://flutter.dev/setup/#android-setup for detailed instructions.
The following sections
describe how to perform these tasks and finish the setup process. Once you have
installed any missing dependencies, you can run the
flutter
doctor
command
again to verify that you’ve set everything up correctly.
Android setup
Install Android Studio
Set up your Android device
Set up the Android emulator
Install the Flutter and Dart plugins in your android studio
To install these:
- Start
Android Studio.
- Open plugin preferences (Preferences
> Plugins on macOS, File > Settings > Plugins on
Windows & Linux).
- Select Marketplace,
select the Flutter plugin and click Install.
- Click Yes when
prompted to install the Dart plugin.
- Click Restart when
prompted.
Comments