skip to Main Content

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


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

    Hope this might help! 😀

    Login or Signup to reply.
  2. 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:srcdart-sdkbin to C:srcflutterbindart

    Login or Signup to reply.
  3. Just remove old dart from homebrew
    brew remove dart

    Login or Signup to reply.
  4. 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.

    Login or Signup to reply.
  5. 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
    
    Login or Signup to reply.
  6. 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.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search