Android Studio Dart And Flutter Plugin is not installed

后端 未结 11 690
傲寒
傲寒 2020-12-17 19:56

Here is the flutter doctor result:

[√] Flutter (Channel stable, 1.22.1, on Microsoft Windows [Version 10.0.18362.30], locale en-US)
[√] Android t         


        
相关标签:
11条回答
  • 2020-12-17 20:24

    Reinstall Flutter Plugin from Android Studio

    0 讨论(0)
  • 2020-12-17 20:25

    Check your flutter PATH

    which flutter

    if you get /path-to-flutter-sdk/bin//flutter or similar you may have added an extra / in your $HOME/.rc_file. Remove the last '/', restart terminal and try again

    0 讨论(0)
  • 2020-12-17 20:27

    Well hello all

    I would suggest you all to follow the steps what flutter documentation sites tells you to do

    For windows I'm talking(dont know about the mac OS, Linux,and other OS)-->There are some people who got detected flutter and dart plugins by the flutter doctor and few are not

    I got this issue when I tried to install ... I did everything like installed flutter and dart plugin still my flutter doctor haven't detected the plugins ...

    There are n number of reasons you will find in different sites and also in Github issues why the flutter doctor is unable to detect plugins though you installed plugins and followed each and every steps which is mentioned on documentations

    following steps worked for me

    flutter channel dev
    flutter upgrade
    flutter config --android-studio-dir="C:\Program Files\Android\Android Studio"
    flutter doctor -v
    

    note :--- flutter config --android-studio-dir="C:\Program Files\Android\Android Studio" should be example flutter config "C:\Program Files\Android\Android Studio"

    above steps worked for me i hope it will helps you too :)

    0 讨论(0)
  • 2020-12-17 20:27

    Just run this on your terminal (Mac users)

    ln -s ~/Library/Application\ Support/Google/AndroidStudio4.1/plugins ~/Library/Application\ Support/AndroidStudio4.1
    
    0 讨论(0)
  • 2020-12-17 20:32
    1. Open Android studio
    2. Follow the Path Configure > Plugins > marketplace > search Flutter & Dart > Install
    3. Restart IDE(Android studio)
    4. Open Terminal and Export Flutter Path
    5. and run flutter doctor -v
    0 讨论(0)
提交回复
热议问题