How do I find the version of Flutter I have installed on my computer?
Asked
Active
Viewed 2.1e+01k times
154
-
8use `flutter doctor` command – Saman Mar 02 '19 at 09:00
7 Answers
58
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

CopsOnRoad
- 237,138
- 77
- 654
- 440
-
"where dart" doesn't work for me. Getting "bash: where: command not found " – Krishna Shetty Dec 29 '21 at 07:29
-
Very old, but under bash i believe it is `which dart` @KrishnaShetty – Elias Yishak Jan 30 '23 at 18:53
5
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

Mijanur Rahman
- 1,094
- 1
- 11
- 20
5
Simply navigate to flutter sdk folder and open the file version
flutter/version

Osama Remlawi
- 2,356
- 20
- 21
3
If you want to check your flutter version:
flutter --version
If you want to upgrade the flutter version:
flutter upgrade

Tai-sung Wang
- 63
- 7
2
To know your Flutter SDK version, execute the command below: flutter --version
SDK location: where flutter
Detailed information: flutter doctor -v

safira
- 105
- 3