How do I find the version of Flutter I have installed on my computer?
Flutter
Version:
flutter --version
SDK location:
where flutter
Detailed information:
flutter doctor -v
Upgrade
flutter upgrade
Change channel to, say
beta
flutter channel beta flutter upgrade
Dart
Version:
dart --version
SDK location:
where dart
which dart
@KrishnaShetty –
Jilljillana As others have said use
flutter doctor
or
flutter --version
If that is not working you need to make sure that the flutter/bin
directory is in your path:
echo $PATH
If it isn't see this link to add it.
Simply navigate to flutter sdk folder and open the file version
flutter/version
Flutter
Open the terminal, simply write
flutter --version
To see full overview and related other necessary things
flutter doctor
To see the installation path
echo $PATH
Dart
To see the dart language version
dart --version
If you want to check your flutter version:
flutter --version
If you want to upgrade the flutter version:
flutter upgrade
To know your Flutter SDK version, execute the command below: flutter --version
SDK location: where flutter
Detailed information: flutter doctor -v
Open terminal, navigate to Flutter directory,
run flutter --version
.
This command will display the version of Flutter along with other relevant information such as the Dart version and the Flutter channel you're currently using.
© 2022 - 2024 — McMap. All rights reserved.
flutter doctor
command – Lawrenson