Skip to content

Flutter and Dart plugin not installed warnings in flutter doctor #11940

Closed
@alardizabal

Description

@alardizabal

I'm using IntelliJ CE 2017.2.3 EAP and I get missing plugin warnings in flutter doctor when it seems like everything is installed properly and I have no issues building.

screen shot 2017-09-05 at 6 35 37 pm

screen shot 2017-09-05 at 6 36 43 pm

screen shot 2017-09-05 at 6 35 28 pm

screen shot 2017-09-05 at 6 36 56 pm

☆ flutter doctor
[✓] Flutter (on Mac OS X 10.12.6 16G29, locale en-US, channel master)
    • Flutter at /Users/albertlardizabal/dev/flutter
    • Framework revision 321b80961f (85 minutes ago), 2017-09-05 17:00:42 -0400
    • Engine revision 29e0c1c281
    • Tools Dart version 1.25.0-dev.11.0

[✓] Android toolchain - develop for Android devices (Android SDK 26.0.0)
    • Android SDK at /Users/albertlardizabal/Library/Android/sdk
    • Platform android-26, build-tools 26.0.0
    • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build 1.8.0_112-release-b06)

[✓] iOS toolchain - develop for iOS devices (Xcode 8.3.3)
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • Xcode 8.3.3, Build version 8E3004b
    • ios-deploy 1.9.0
    • CocoaPods version 1.3.1

[✓] Android Studio
    • Android Studio at /Applications/Android Studio 3.0 Preview.app/Contents
    • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b01)

[✓] Android Studio (version 2.3)
    • Android Studio at /Applications/Android Studio.app/Contents
    • Java version OpenJDK Runtime Environment (build 1.8.0_112-release-b06)

[-] IntelliJ IDEA Community Edition (version EAP IC-172.3968.1)
    ✗ Flutter plugin not installed; this adds Flutter specific functionality.
    ✗ Dart plugin not installed; this adds Dart specific functionality.
    • For information about installing plugins, see
      https://flutter.io/intellij-setup/#installing-the-plugins

[✓] Connected devices
    • Pixel                        • FA71A0302167                             • android-arm • Android 7.1.2 (API 25)
    • SM G930V                     • a674c503                                 • android-arm • Android 6.0.1 (API 23)
    • Albert Lardizabal's iPhone 6 • c0e109b7e55a826627aa0f3e79af8931534f3554 • ios         • iOS 11.0
    • iPhone                       • 2cb36c18cfeec63f6a68b3192f094aaf35a626d0 • ios         • iOS 10.0.2

Activity

sunglim

sunglim commented on Sep 7, 2017

@sunglim

I recommend you setup again as described on https://flutter.io/setup-macos/
(at least, you are using master branch, but the manual uses 'alpha' branch)

added
toolAffects the "flutter" command-line tool. See also t: labels.
t: flutter doctorProblem related to the "flutter doctor" tool
on May 18, 2018
modified the milestone: Goals on May 18, 2018
Hixie

Hixie commented on May 18, 2018

@Hixie
Contributor
giteekasawlani

giteekasawlani commented on May 21, 2018

@giteekasawlani

I am having the same issue right now.
I have installed flutter and dart plugins and installed flutter SDK and set an environmental path for flutter.
While running flutter doctor command I am getting error and cant run project in android studio.

screenshot from 2018-05-21 16-48-09
screenshot from 2018-05-21 16-48-32
screenshot from 2018-05-21 16-48-46

waihanko

waihanko commented on May 23, 2018

@waihanko

I alerady faced this issue but i solved by myself
-Uninstall Dart and flutter
-Restart android studio or intellij
-Install Dart and flutter and restart again

bradh43

bradh43 commented on May 29, 2018

@bradh43

I found an alternative way to fix this issue. You can just install the Flutter and Dart plugin in android studio by following these steps:
1.) Start the Android Studio application
2.) Open plugin preferences (Preferences>Plugins on macOS, File>Settings>Plugins on Windows & Linux).
3.) Select Browse repositories…, select the Flutter plug-in and click install .
4.) Click Yes when prompted to install the Dart plugin.
5.) Click Restart when prompted.

gitsofian

gitsofian commented on Jun 9, 2018

@gitsofian

working wonderfull

arkapravoghosh

arkapravoghosh commented on Jun 12, 2018

@arkapravoghosh

Thanks for helping...:)

TusharGogna

TusharGogna commented on Jun 15, 2018

@TusharGogna

I did what bradh43 said but I am still getting the following:
X Flutter plugin not installed; this adds Flutter specific functionality.
X Dart plugin not installed; this adds Dart specific functionality.

They are installed and enabled, also the paths are set. I have also restarted the AS.

XiaYongjie

XiaYongjie commented on Jun 18, 2018

@XiaYongjie

@giteekasawlani I have the same problem. Do you know how to solve it?

66 remaining items

tehsunnliu

tehsunnliu commented on Jan 13, 2021

@tehsunnliu

I wonder why it works on dev and not in stable?

saifamer2030

saifamer2030 commented on Jan 14, 2021

@saifamer2030

try this line of code, worked for me

ln -s ~/Library/Application\ Support/Google/AndroidStudio4.1/plugins ~/Library/Application\ Support/AndroidStudio4.1

kevintao0417

kevintao0417 commented on Jan 16, 2021

@kevintao0417

中国的老哥无论是否翻墙都要配置国内镜像,否则common tools下载不成功

配置了还是不行啊……

erperejildo

erperejildo commented on Jan 30, 2021

@erperejildo

change channel master to dev. then upgrade.

flutter channel dev
flutter channel upgrade

try again

flutter doctor

Note: I think it's Android Studio 4.1 issue...

this worked for me

Mereep

Mereep commented on Feb 3, 2021

@Mereep

Same problem. Installed in alll-standard settings on fresh Mac. The plugins are both not recognized in current stable flutter.

eerbee

eerbee commented on Feb 9, 2021

@eerbee

yes mine solved by switching to the dev channel, but why it cant work on stable channel?

zjamshidi

zjamshidi commented on Feb 14, 2021

@zjamshidi

I had the same problem. Run the commands:

flutter channel dev
flutter doctor
flutter channel master
flutter doctor

Don't forget to install Dart and Flutter plugins for Android Studio.

It works for me, too. Thanks a tone

tanveersalmangkn

tanveersalmangkn commented on Feb 17, 2021

@tanveersalmangkn

I tried all of this but none worked for me. What I did was super easy and cool
I just run the command flutter clean and flutter run
and it worked like a charm :)

gustiprp

gustiprp commented on Feb 18, 2021

@gustiprp

change channel master to dev. then upgrade.

flutter channel dev
flutter channel upgrade

try again

flutter doctor

Note: I think it's Android Studio 4.1 issue...

ist work

exeptionerror

exeptionerror commented on Jun 24, 2021

@exeptionerror
cjxonix

cjxonix commented on Jun 27, 2021

@cjxonix

try this line of code, worked for me

ln -s ~/Library/Application\ Support/Google/AndroidStudio4.1/plugins ~/Library/Application\ Support/AndroidStudio4.1

Change the version of the Android studio depending on what you have, I had 4.2 so used.

ln -s ~/Library/Application\ Support/Google/AndroidStudio4.2/plugins ~/Library/Application\ Support/AndroidStudio4.2

github-actions

github-actions commented on Jul 30, 2021

@github-actions

This thread has been automatically locked since there has not been any recent activity after it was closed. If you are still experiencing a similar issue, please open a new bug, including the output of flutter doctor -v and a minimal reproduction of the issue.

locked as resolved and limited conversation to collaborators on Jul 30, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    t: flutter doctorProblem related to the "flutter doctor" tooltoolAffects the "flutter" command-line tool. See also t: labels.

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @xiaods@zoechi@dpmccabe@Hixie@sunglim

        Issue actions

          Flutter and Dart plugin not installed warnings in flutter doctor · Issue #11940 · flutter/flutter