Android Studio – Linux
Download Android Studio - https://developer.android.com/studio
Get the Flutter SDK - https://flutter.dev/docs/get-started/install/linux
Learn more about Android Studio - https://developer.android.com/studio/intro/
Step 1 : Get the Flutter SDK
Download the following installation bundle to get the latest stable release of the Flutter SDK:
Download SDK and extract downloaded file, just double click on that. and just copy extracted folder and paste it to your desired location (for example, Documents\flutter).
Step 2 : Update your path
You’ll probably
want to update this variable permanently, so you can run flutter commands in any terminal session. To update PATH variable, we need to open terminal.
Run
source $HOME/.
to refresh the current window, or open a new terminal window to automatically source the file.Verify that the
flutter/bin
directory is now in your PATH by running:
Verify that the flutter
command is available by running:
You are now ready to run Flutter commands in the Flutter Console!
Last updated