How to check the installed version of Flutter?

DartVersionFlutter

Dart Problem Overview


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

Dart Solutions


Solution 1 - Dart

use the following command

flutter --version

Solution 2 - Dart

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
    

Solution 3 - Dart

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.

Solution 4 - Dart

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

Solution 5 - Dart

To get the current version of the Flutter SDK, including its framework, engine, and tools:

flutter --version

Also you can find it by

flutter doctor

To view all commands that flutter supports:

flutter --help --verbose

Solution 6 - Dart

Simply navigate to flutter sdk folder and open the file version

flutter/version 

Solution 7 - Dart

If you want to check your flutter version:

flutter --version

If you want to upgrade the flutter version:

flutter upgrade

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser8637708View Question on Stackoverflow
Solution 1 - DartSami KanafaniView Answer on Stackoverflow
Solution 2 - DartCopsOnRoadView Answer on Stackoverflow
Solution 3 - DartSuragchView Answer on Stackoverflow
Solution 4 - DartMijanur RahmanView Answer on Stackoverflow
Solution 5 - DartParesh MangukiyaView Answer on Stackoverflow
Solution 6 - DartOsama RemlawiView Answer on Stackoverflow
Solution 7 - DartTai-sung WangView Answer on Stackoverflow