I did update flutter 3.7 and flutter doctor

8k views Asked by At

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

7

There are 7 answers

0
Shashi Kant On

Just remove old dart from homebrew

brew remove dart

this will definitely work

1
FGrunt On

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

Hope this might help! :D

4
Tomasz Kot On

Just remove old dart from homebrew brew remove dart

0
hamza hussein On

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
mnothman On

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
Lin An On

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
0
Axel Asa On

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.