6

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

Tdayo
  • 269
  • 4
  • 11

6 Answers6

27

Just remove old dart from homebrew brew remove dart

Tomasz Kot
  • 302
  • 2
  • 6
1

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 :

  1. Delete the dart SDK that you download separately.

  2. Go to the environment variables then select the Path from the user variables.

  3. Change C:\src\dart-sdk\bin to C:\src\flutter\bin\dart

0

I solved it by adding the dart/ directory inside flutter/bin directory.

Hope this might help! :D

FGrunt
  • 1
  • Your answer could be improved with additional supporting information. Please [edit] to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Feb 03 '23 at 21:30
0

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 change\delete the env path that had dart-sdk separate, and only keep the flutter\bin path. I have both flutter\bin & flutter\bin\dart. Not sure if both are needed but mine worked.

0

I was facing the same issue after upgraded to 3.7.x. In my case, I didn't set anything about Flutter in my .zshrc, I just created a symbolic link instead like this:

sudo ln -sfn /Users/lin/flutter/bin/flutter /usr/local/bin/flutter

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:

which dart

It prompted dart not found

(2) Create a symbolic link for Dart:

sudo ln -sfn /Users/lin/flutter/bin/dart /usr/local/bin/dart

(3) Verify Dart again:

which dart

It prompts: /usr/local/bin/dart

dart --version

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:

flutter doctor -v
Lin An
  • 41
  • 6
0

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.

Axel Asa
  • 3
  • 3