Hello guys, How are you all? Hope you all are fine. when you install and config flutter sdk for the first time user needs to points to SDK Folder Path for Future Projects. So in this article, we will go through How to find the path of Flutter SDK?
How to find the path of Flutter SDK?
Step1 : Check flutter SDK installed or not
First Of all, You need to check that your flutter SDK is properly installed Or not in your Machine. If flutter SDK is not installed then Just follow this article command not found: flutter. And if flutter SDK is properly installed in your machine then you will get the Flutter SDK path in step 2. To check flutter SDK is properly configured or not Just run the below command in your terminal.
flutter --version
If flutter SDK installed then your output something like this.

Step2 : Run This Command
Now, We will find for flutter SDK location. To get flutter SDK path all we need to do is just run following command in your terminal.
flutter doctor -v
Output will be something like below
[√] Flutter (Channel dev, 2.1.0-12.1.pre, on Microsoft Windows [Version 10.0.19042.1052], locale en-IN)
• Flutter version 2.1.0-12.1.pre at E:\Flutter SDK\flutter
• Framework revision 8264cb3e8a (4 months ago), 2021-03-10 12:37:57 -0800
• Engine revision 711ab3fda0
• Dart version 2.13.0 (build 2.13.0-116.0.dev)
In second line you will get flutter SDK path
Flutter version 2.1.0-12.1.pre at E:\Flutter SDK\flutter

Step3 : Point flutter SDK path
Now you can point your flutter SDK path in your android studio or somewhere you want to add.

- How to find the path of Flutter SDK?
to find the path of Flutter SDK First Of all, You need to check that your flutter SDK is properly installed Or not in your Machine. If flutter SDK is not installed then Just follow this article command not found: flutter. And if flutter SDK is properly installed in your machine then you will get the Flutter SDK path in step 2. To check flutter SDK is properly configured or not Just run the below command in your terminal.
- find the path of Flutter SDK
to find the path of Flutter SDK First Of all, You need to check that your flutter SDK is properly installed Or not in your Machine. If flutter SDK is not installed then Just follow this article command not found: flutter. And if flutter SDK is properly installed in your machine then you will get the Flutter SDK path in step 2. To check flutter SDK is properly configured or not Just run the below command in your terminal.
Summery
So, It’s All About How to find the path of Flutter SDK?. I hope this tutorial helps you to solve your error. Please Comment Below if You stucks anywhere with my code.
Also Check Out Below Tutorials
- cmdline-tools component is missing Error in Flutter
- The argument type ‘PointerEvent’ can’t be assigned to the parameter type ‘PointerDownEvent’
- How to Change Border Color of ElevatedButton in Flutter
- Flutter-Unable to find bundled Java version after updated android studio Arctic Fox(2020.3.1) on M1 Apple Silicon
- How to show/hide password in TextFormField in flutter?