154

How do I find the version of Flutter I have installed on my computer?

user8637708
  • 3,303
  • 2
  • 13
  • 15

7 Answers7

251

use the following command

flutter --version
Sami Kanafani
  • 14,244
  • 6
  • 45
  • 41
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
19

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.

Suragch
  • 484,302
  • 314
  • 1,365
  • 1,393
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
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