How to check the installed version of Flutter?
Asked Answered
G

8

171

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

Glorious answered 2/3, 2019 at 8:56 Comment(1)
use flutter doctor commandLawrenson
B
271

use the following command

flutter --version
Barbados answered 2/3, 2019 at 9:9 Comment(0)
C
65

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
    
Cherise answered 3/12, 2019 at 9:26 Comment(2)
"where dart" doesn't work for me. Getting "bash: where: command not found "Vitta
Very old, but under bash i believe it is which dart @KrishnaShettyJilljillana
U
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.

Undesirable answered 6/3, 2019 at 20:34 Comment(0)
O
7

Simply navigate to flutter sdk folder and open the file version

flutter/version 
Offenseless answered 15/6, 2021 at 9:56 Comment(0)
K
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
Koniology answered 5/3, 2021 at 2:25 Comment(0)
M
4

If you want to check your flutter version:

flutter --version

If you want to upgrade the flutter version:

flutter upgrade
Maggard answered 6/4, 2021 at 15:47 Comment(0)
H
2

To know your Flutter SDK version, execute the command below: flutter --version

SDK location: where flutter

Detailed information: flutter doctor -v

Halloween answered 22/9, 2022 at 14:3 Comment(0)
A
0

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.

Attainture answered 12/3 at 0:10 Comment(1)
As it’s currently written, your answer is unclear. Please edit to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers in the help center.Schwitzer

© 2022 - 2024 — McMap. All rights reserved.