How to check the installed version of Flutter?

104,132

Solution 1

use the following command

flutter --version

Solution 2

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

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

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

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
Share:
104,132
user8637708
Author by

user8637708

Updated on January 11, 2022

Comments

  • user8637708
    user8637708 over 2 years

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

  • Krishna Shetty
    Krishna Shetty over 2 years
    "where dart" doesn't work for me. Getting "bash: where: command not found "