I can build flutter project .
but I did catch warning by flutter doctor
I want fix .
warning code
[!] Flutter (Channel stable, 3.7.0, on macOS 13.0.1 22A400 darwin-arm64, locale ja-JP)
! Warning: `dart` on your path resolves to
/opt/homebrew/Cellar/dart/2.14.4/libexec/bin/dart, which is not inside your current Flutter SDK checkout at /Users/t/Developer/flutter.
Consider adding
/Users/t/Developer/flutter/bin to the front of your path.
tried
set -x PATH ~/development/flutter/bin $PATH
fltter clean
6
Answers
I solved it by adding the dart/ directory inside flutter/bin directory.
Hope this might help! 😀
Important note from flutter documentation:
The Flutter SDK contains the dart command alongside the flutter command so that you can more easily run Dart command-line programs. Downloading the Flutter SDK also downloads the compatible version of Dart, but if you’ve downloaded the Dart SDK separately, make sure that the Flutter version of dart is first in your path, as the two versions might not be compatible.
The previous text means that flutter SDK has Dart SDK inside it, So you don’t need to download dart separately.
To solve this proplem :
Delete the dart SDK that you download separately.
Go to the environment variables then select the Path from the user variables.
Change C:srcdart-sdkbin to C:srcflutterbindart
Just remove old dart from homebrew
brew remove dart
I fixed it by deleting the separate "dart-sdk" folder that I downloaded, and keeping the downloads from the flutter which has everything in it already.
Mine was in C tools dart-sdk
You may also have to changedelete the env path that had dart-sdk separate, and only keep the flutterbin path. I have both flutterbin & flutterbindart. Not sure if both are needed but mine worked.
I was facing the same issue after upgraded to
3.7.x
. In my case, I didn’t set anything aboutFlutter
in my.zshrc
, I just created a symbolic link instead like this:So, when I am facing this issue, I think it would probably be working for
Dart
as well. Here is how I fixed it:(1) Verify
Dart
:It prompted
dart not found
(2) Create a symbolic link for
Dart
:(3) Verify
Dart
again:It prompts:
/usr/local/bin/dart
It prompts
Dart SDK version: 2.19.2 (stable) (Tue Feb 7 18:37:17 2023 +0000) on "macos_x64"
(4) At this point, it will be working if you type:
Well, you could go to the directory /path where your dart is located then cut it (‘the folder is also named dart’) and paste the dart folder inside of your flutter path where the bin is also located (‘not inside the bin folder, just in the same location as the bin folder’), this will take away the warnings.